[Open In Colab](https://colab.research.google.com/github/dandi/example-notebooks/blob/master/dandi/DANDI User Guide, Part I.ipynb)

Installing requirements¶

The cell below installs every Python package needed to run this notebook, at fully pinned versions, using uv for fast resolution. In Colab the cell is collapsed by default — click the ▶ button to run it.

In [1]:
# install cell skipped during CI (deps preinstalled into system Python)

⚠️ Restart runtime after install

The install may upgrade packages already loaded in the kernel. Go to Runtime → Restart session, then Run all cells below (skip this install cell on re-run).

Part I¶

Converting data to NWB¶

This is part 3 of the DANDI User Training on Nov 1, 2021.

Neurodata Without Borders (NWB)¶

DANDI has chosen NWB as our supported format for exchanging neurophysiology data. NWB is a BRAIN Initiative-backed data standard designed to package all of the data and metadata associated with neurophysiology experiments into a single file that enables sharing and re-analysis of the data. This includes extracellular and intracellular electrophysiology, optical physiology, and behavior. NWB defines a data organization schema that ensure the crucial metadata is packaged in a standardized way. This includes not just the neurophysiology recordings, but also metadata about the subjects, equipment, task structure, etc.

image.png

Creating an NWB file¶

Converting data to NWB is a big topic that merits its own workshop! Here, we will just give a surface introduction by quickly walk through a script for creating an NWB file. The following creates an example extracellular electrophysiology file with an electrodes table and data from voltage traces. Note also the subject-specific information, which is required by DANDI, and is read and used throughout the data publication process.

In [2]:
from datetime import datetime
from dateutil.tz import tzlocal
import uuid

import numpy as np

from pynwb.file import NWBFile, Subject
from pynwb.ecephys import ElectricalSeries
from pynwb import NWBHDF5IO

def create_nwbfile(subject_id):
    nwbfile = NWBFile(
        session_description='my first synthetic recording',
        identifier=str(uuid.uuid4()),
        session_start_time=datetime.now(tzlocal()),
        experimenter='Dr. Bilbo Baggins',
        lab='Bag End Laboratory',
        institution='University of Middle Earth at the Shire',
        experiment_description='I went on an adventure with thirteen dwarves to reclaim vast treasures.',
        session_id='001',
    )

    nwbfile.subject = Subject(
        subject_id=subject_id,
        species='Mus musculus',
        age='P90D',
        sex='F',
    )

    device = nwbfile.create_device(name='trodes_rig123')

    electrode_group = nwbfile.create_electrode_group(
        name='tetrode1',
        description="an example tetrode",
        location="hippocampus",
        device=device,
    )

    for _ in range(4):
        nwbfile.add_electrode(
            x=1.0, y=2.0, z=3.0,
            imp=np.nan,
            location='CA1',
            filtering='none',
            group=electrode_group,
        )

    electrode_table_region = nwbfile.create_electrode_table_region([0, 2], 'the first and third electrodes')


    rate = 10.0
    data_len = 1000
    ephys_data = np.random.rand(data_len * 2).reshape((data_len, 2))
    ephys_timestamps = np.arange(data_len) / rate

    ephys_ts = ElectricalSeries(
        name='test_ephys_data',
        data=ephys_data,
        electrodes=electrode_table_region,
        timestamps=ephys_timestamps,
        description="Random numbers generated with numpy.random.rand"
    )
    nwbfile.add_acquisition(ephys_ts)
    
    return nwbfile
    

NWB tutorials¶

PyNWB MatNWB
Reading NWB files Jupyter notebook 15 min video
MATLAB Live Script
Writing extracellular electrophysiology 23 min video
Jupyter notebook
46 min video
Written tutorial
Writing intracellular electrophysiology Jupyter notebook Written tutorial
Writing optical physiology 31 min video
Jupyter notebook
39 min video
Written tutorial
Advanced write 26 min video 16 min video
Written tutorial

If you think NWB might not meet your needs, please contact us on our help desk!

In [3]:
!pwd
/home/runner/work/example-notebooks/example-notebooks/dandi
In [4]:
import os

os.makedirs('data', exist_ok=True)

nwbfile = create_nwbfile(subject_id='001')

with NWBHDF5IO('data/ecephys_example.nwb', 'w') as io:
    io.write(nwbfile)

Uploading to DANDI¶

When you register a dandiset, it creates a permanent ID. For instructional purposes, we will be using a sandbox version of DANDI, so that we do not create real IDs for pretend datasets.

We are going to use a sandbox version of DANDI.

  1. Go to DANDI sandbox (https://sandbox.dandiarchive.org/) and use your GitHub account to log in.

  2. Click on your initials in the upper right and copy your API key.

image.png

  1. Now create a new dataset by clicking the NEW DATASET button

image.png

  1. Create a new Launcher

image.png

and launch a Terminal window.

image.png

  1. Assign your DANDI API key as an environmental variable:
export DANDI_API_KEY=your-key-here

should look like

export DANDI_API_KEY=d71c0db17827aac067896f612f48af667890000

Confirm that this worked with the following line, which should print your key.

echo $DANDI_API_KEY
  1. Copy the URL from the dataset you have created (something like https://sandbox.dandiarchive.org/#/dandiset/100507)

and in the Terminal window, run

dandi download "https://sandbox.dandiarchive.org/#/dandiset/100507"  # <-- your dandiset ID here
cd 100507 # <-- your dandiset ID here
dandi organize ../data -f dry
dandi organize ../data
dandi upload -i dandi-sandbox  # (on the non-sandbox server, this line would simply be: dandi upload)
  1. Now refresh the landing page of your dandiset and you should see that it is no longer empty.

image.png

You can explore all the NWB files within by clicking Files

image.png

  1. Adding more data to a dandiset
In [5]:
nwbfile = create_nwbfile(subject_id='002')

with NWBHDF5IO('data/ecephys_example2.nwb', 'w') as io:
    io.write(nwbfile)

Then go back to terminal and run

dandi organize ../data
dandi upload -i dandi-sandbox

Inspecting NWB Files¶

PyNWB objects render a rich, expandable summary in Jupyter, which is a quick way to visually confirm the contents of a conversion.

In [6]:
nwbfile
Out[6]:

root (NWBFile)

session_description: my first synthetic recording
identifier: 9ae96baf-2f83-4da5-8df1-30a66a18d65c
session_start_time2026-08-23 00:24:59.166948+00:00
timestamps_reference_time2026-08-23 00:24:59.166948+00:00
file_create_date
02026-08-23 00:24:59.167100+00:00
experimenter('Dr. Bilbo Baggins',)
experiment_description: I went on an adventure with thirteen dwarves to reclaim vast treasures.
session_id: 001
lab: Bag End Laboratory
institution: University of Middle Earth at the Shire
subject (Subject)
age: P90D
age__reference: birth
sex: F
species: Mus musculus
subject_id: 002
devices
trodes_rig123 (Device)
electrode_groups
tetrode1 (ElectrodeGroup)
description: an example tetrode
location: hippocampus
device (Device)
electrodes (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group group_name x y z imp filtering
id
0 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
1 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
2 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
3 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
acquisition
test_ephys_data (ElectricalSeries)
resolution: -1.0
comments: no comments
description: Random numbers generated with numpy.random.rand
conversion: 1.0
offset: 0.0
unit: volts
data
NumPy array
Data typefloat64
Shape(1000, 2)
Array size15.62 KiB
timestamps
NumPy array
Data typefloat64
Shape(1000,)
Array size7.81 KiB
timestamps_unit: seconds
interval: 1
electrodes (DynamicTableRegion)
description: the first and third electrodes
table (ElectrodesTable)
description: metadata about extracellular electrodes
columns
location
Location of the electrode (channel).
group
Reference to the ElectrodeGroup.
group_name
Name of the ElectrodeGroup.
x
x coordinate of the channel location in the brain.
y
y coordinate of the channel location in the brain.
z
z coordinate of the channel location in the brain.
imp
Impedance of the channel, in ohms.
filtering
Description of hardware filtering.
table
location group group_name x y z imp filtering
id
0 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
1 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
2 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
3 CA1 tetrode1 pynwb.ecephys.ElectrodeGroup at 0x140312953725776\nFields:\n description: an example tetrode\n device: trodes_rig123 pynwb.device.Device at 0x140312953724496\n location: hippocampus\n tetrode1 1.0 2.0 3.0 NaN none
analysis
scratch
processing
stimulus
stimulus_template
lab_meta_data
device_models
icephys_electrodes
ogen_sites
imaging_planes
intervals
events

The same works for any file shared on DANDI. You can use the DANDI API to access the S3 path of any file and stream it directly, inspecting it without downloading the whole file.

In [7]:
# calcium imaging, Giocomo Lab (30 GB)
#dandiset_id, filepath = "000054", "sub-F2/sub-F2_ses-20190407T210000_behavior+ophys.nwb"

# neuropixel, Giocomo Lab (46 GB)
#dandiset_id, filepath = "000053", "sub-npI1/sub-npI1_ses-20190415_behavior+ecephys.nwb"

# neuropixel, Allen Intitute
dandiset_id, filepath = "000022", "sub-744912845/sub-744912845_ses-766640955.nwb"

# ecephys, Buzsaki Lab (15.2 GB)
#dandiset_id, filepath = "000003", "sub-YutaMouse41/sub-YutaMouse41_ses-YutaMouse41-150831_behavior+ecephys.nwb"
In [8]:
import h5py
import remfile
from dandi.dandiapi import DandiAPIClient
from pynwb import NWBHDF5IO

with DandiAPIClient() as client:
    asset = client.get_dandiset(dandiset_id, "draft").get_asset_by_path(filepath)
    s3_url = asset.get_content_url(follow_redirects=1, strip_query=True)

# cache reads on disk so re-running cells doesn't re-fetch the same bytes
rem_file = remfile.File(s3_url, disk_cache=remfile.DiskCache("nwb-cache"))
h5py_file = h5py.File(rem_file, "r")
io = NWBHDF5IO(file=h5py_file, load_namespaces=True)
nwb = io.read()
nwb
Out[8]:

root (NWBFile)

session_description: Data and metadata for an Ecephys session
identifier: 766640955
session_start_time2019-01-02 15:45:39-08:00
timestamps_reference_time2019-01-02 15:45:39-08:00
file_create_date
02020-05-26 00:54:16.911338-07:00
acquisition
raw_running_wheel_rotation (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat32
Shape(559800,)
Array size2.14 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2239200
Compressed size (bytes)2239200
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(559800,)
Array size4.27 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4478400
Compressed size (bytes)4478400
Compression ratio1.0
timestamps_unit: seconds
interval: 1
timestamp_link
0: acquisition/running_wheel_signal_voltage/timestamps
1: acquisition/running_wheel_supply_voltage/timestamps
running_wheel_signal_voltage (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: V
data
HDF5 dataset
Data typefloat64
Shape(559800,)
Array size4.27 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4478400
Compressed size (bytes)4478400
Compression ratio1.0
timestamps (link to acquisition/raw_running_wheel_rotation/timestamps)
HDF5 dataset
Data typefloat64
Shape(559800,)
Array size4.27 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4478400
Compressed size (bytes)4478400
Compression ratio1.0
timestamps_unit: seconds
interval: 1
running_wheel_supply_voltage (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: V
data
HDF5 dataset
Data typefloat64
Shape(559800,)
Array size4.27 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4478400
Compressed size (bytes)4478400
Compression ratio1.0
timestamps (link to acquisition/raw_running_wheel_rotation/timestamps)
HDF5 dataset
Data typefloat64
Shape(559800,)
Array size4.27 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4478400
Compressed size (bytes)4478400
Compression ratio1.0
timestamps_unit: seconds
interval: 1
processing
eye_tracking (ProcessingModule)
description: Eye tracking processing module
cr_ellipse_fits (DynamicTable)
description:
columns
center_x
no description
center_y
no description
height
no description
phi
no description
width
no description
timestamps
no description
table
center_x center_y height phi width timestamps
id
0 299.137235 216.363625 8.514879 -0.711592 7.704894 3.16310
1 298.643778 216.468772 7.721200 0.750496 8.626792 3.19620
2 298.134375 216.190673 7.211541 0.208638 9.105101 3.21337
3 297.990495 216.188021 7.285376 0.177946 8.529475 3.24650

... and 293233 more row(s).

eye_ellipse_fits (DynamicTable)
description:
columns
center_x
no description
center_y
no description
height
no description
phi
no description
width
no description
timestamps
no description
table
center_x center_y height phi width timestamps
id
0 287.005728 200.927650 116.725200 0.041631 154.108151 3.16310
1 286.668325 200.961694 116.534140 0.043075 154.030638 3.19620
2 286.803647 201.082064 116.430422 0.045384 153.971211 3.21337
3 286.750337 201.186453 116.517308 0.043620 154.147852 3.24650

... and 293233 more row(s).

pupil_ellipse_fits (DynamicTable)
description:
columns
center_x
no description
center_y
no description
height
no description
phi
no description
width
no description
timestamps
no description
table
center_x center_y height phi width timestamps
id
0 295.982824 182.389771 50.846103 0.184439 58.154865 3.16310
1 295.893294 182.197393 51.076075 0.148822 58.443929 3.19620
2 295.624467 181.095378 49.372065 0.158267 58.906917 3.21337
3 295.494799 181.098779 49.695603 0.187046 58.937509 3.24650

... and 293233 more row(s).

eye_tracking_rig_metadata (ProcessingModule)
description: Eye tracking rig metadata module
eye_tracking_rig_metadata (EcephysEyeTrackingRigMetadata)
equipment: NP.1
monitor_position
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[118.6 86.2 31.6]
monitor_position__unit: mm
camera_position
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[102.8 74.7 31.6]
camera_position__unit: mm
led_position
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[246. 92.3 52.6]
led_position__unit: mm
monitor_rotation
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[0. 0. 0.]
monitor_rotation__unit: deg
camera_rotation
HDF5 dataset
Data typefloat64
Shape(3,)
Array size24.00 bytes
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)24
Compressed size (bytes)24
Compression ratio1.0

[0. 0. 2.8]
camera_rotation__unit: deg
filtered_gaze_mapping (ProcessingModule)
description: Gaze mapping processing module filtered outputs
eye_area (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Pixels ^ 2
data
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
pupil_area (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Pixels ^ 2
data
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
screen_coordinates (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Centimeters
data
HDF5 dataset
Data typefloat64
Shape(293237, 2)
Array size4.47 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4691792
Compressed size (bytes)4691792
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
screen_coordinates_spherical (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Degrees
data
HDF5 dataset
Data typefloat64
Shape(293237, 2)
Array size4.47 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4691792
Compressed size (bytes)4691792
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
optotagging (ProcessingModule)
description: optogenetic stimulution data
optotagging (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: seconds
data
HDF5 dataset
Data typefloat64
Shape(180,)
Array size1.41 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)1440
Compressed size (bytes)1440
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(180,)
Array size1.41 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)1440
Compressed size (bytes)1440
Compression ratio1.0
timestamps_unit: seconds
interval: 1
optogenetic_stimulation (TimeIntervals)
description:
columns
start_time
Start time of epoch, in seconds
condition
no description
level
no description
stop_time
Stop time of epoch, in seconds
stimulus_name
no description
duration
no description
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time condition level stop_time stimulus_name duration tags timeseries
id
0 9365.61396 2.5 ms pulses at 10 Hz 2.5 9366.61396 fast_pulses 1.00 [optical_stimulation] [(0, 1, optotagging pynwb.base.TimeSeries at 0x140312946117088\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (180,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (180,), type "<f8">\n timestamps_unit: seconds\n unit: seconds\n)]
1 9367.33400 2.5 ms pulses at 10 Hz 4.0 9368.33400 fast_pulses 1.00 [optical_stimulation] [(1, 1, optotagging pynwb.base.TimeSeries at 0x140312946117088\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (180,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (180,), type "<f8">\n timestamps_unit: seconds\n unit: seconds\n)]
2 9369.10410 a single square pulse 1.0 9369.11410 pulse 0.01 [optical_stimulation] [(2, 1, optotagging pynwb.base.TimeSeries at 0x140312946117088\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (180,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (180,), type "<f8">\n timestamps_unit: seconds\n unit: seconds\n)]
3 9371.09418 half-period of a cosine wave 4.0 9372.09418 raised_cosine 1.00 [optical_stimulation] [(3, 1, optotagging pynwb.base.TimeSeries at 0x140312946117088\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (180,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (180,), type "<f8">\n timestamps_unit: seconds\n unit: seconds\n)]

... and 176 more row(s).

raw_gaze_mapping (ProcessingModule)
description: Gaze mapping processing module raw outputs
eye_area (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Pixels ^ 2
data
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
pupil_area (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Pixels ^ 2
data
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
screen_coordinates (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Centimeters
data
HDF5 dataset
Data typefloat64
Shape(293237, 2)
Array size4.47 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4691792
Compressed size (bytes)4691792
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
screen_coordinates_spherical (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: Degrees
data
HDF5 dataset
Data typefloat64
Shape(293237, 2)
Array size4.47 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)4691792
Compressed size (bytes)4691792
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(293237,)
Array size2.24 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2345896
Compressed size (bytes)2345896
Compression ratio1.0
timestamps_unit: seconds
interval: 1
running (ProcessingModule)
description: running speed data
running_speed (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: cm/s
data
HDF5 dataset
Data typefloat64
Shape(372373,)
Array size2.84 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2978984
Compressed size (bytes)2978984
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(372373,)
Array size2.84 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2978984
Compressed size (bytes)2978984
Compression ratio1.0
timestamps_unit: seconds
interval: 1
timestamp_link
0 (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat32
Shape(372373,)
Array size1.42 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)1489492
Compressed size (bytes)1489492
Compression ratio1.0
timestamps (link to processing/running/running_speed/timestamps)
HDF5 dataset
Data typefloat64
Shape(372373,)
Array size2.84 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2978984
Compressed size (bytes)2978984
Compression ratio1.0
timestamps_unit: seconds
interval: 1
running_speed_end_times (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: cm/s
data
HDF5 dataset
Data typefloat64
Shape(372373,)
Array size2.84 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2978984
Compressed size (bytes)2978984
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(372373,)
Array size2.84 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2978984
Compressed size (bytes)2978984
Compression ratio1.0
timestamps_unit: seconds
interval: 1
running_wheel_rotation (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: radians
data
HDF5 dataset
Data typefloat32
Shape(372373,)
Array size1.42 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)1489492
Compressed size (bytes)1489492
Compression ratio1.0
timestamps (link to processing/running/running_speed/timestamps)
HDF5 dataset
Data typefloat64
Shape(372373,)
Array size2.84 MiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)2978984
Compressed size (bytes)2978984
Compression ratio1.0
timestamps_unit: seconds
interval: 1
stimulus (ProcessingModule)
description: Stimulus Times processing
timestamps (TimeSeries)
resolution: -1.0
comments: no comments
description: no description
conversion: 1.0
offset: 0.0
unit: s
data
HDF5 dataset
Data typefloat64
Shape(77436,)
Array size604.97 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)619488
Compressed size (bytes)619488
Compression ratio1.0
timestamps
HDF5 dataset
Data typefloat64
Shape(77436,)
Array size604.97 KiB
Chunk shapeNone
CompressionNone
Compression optsNone
Uncompressed size (bytes)619488
Compressed size (bytes)619488
Compression ratio1.0
timestamps_unit: seconds
interval: 1
electrodes (ElectrodesTable)
description: metadata about extracellular electrodes
columns
x
the x coordinate of the channel location
y
the y coordinate of the channel location
z
the z coordinate of the channel location
imp
the impedance of the channel
location
the location of channel within the subject e.g. brain region
filtering
description of hardware filtering
group
a reference to the ElectrodeGroup this electrode is a part of
group_name
the name of the ElectrodeGroup this electrode is a part of
probe_vertical_position
Length-wise position of electrode/channel on device (microns)
probe_horizontal_position
Width-wise position of electrode/channel on device (microns)
probe_id
The unique id of this electrode's/channel's device
local_index
The local index of electrode/channel on device
valid_data
Whether data from this electrode/channel is usable
table
x y z imp location filtering group group_name probe_vertical_position probe_horizontal_position probe_id local_index valid_data
id
850022902 7403.0 279.0 279.0 NaN AP band: 500 Hz high-pass; LFP band: 1000 Hz low-pass probeA abc.EcephysElectrodeGroup at 0x140312946183872\nFields:\n description: Ecephys Electrode Group\n device: probeA abc.EcephysProbe at 0x140312946180176\nFields:\n probe_id: 773592315\n sampling_rate: 29999.968498706\n\n has_lfp_data: True\n lfp_sampling_rate: 1249.99868744608\n location: See electrode locations\n probe_id: 773592315\n probeA 3240 59 773592315 322 True
850022906 7394.0 252.0 252.0 NaN AP band: 500 Hz high-pass; LFP band: 1000 Hz low-pass probeA abc.EcephysElectrodeGroup at 0x140312946183872\nFields:\n description: Ecephys Electrode Group\n device: probeA abc.EcephysProbe at 0x140312946180176\nFields:\n probe_id: 773592315\n sampling_rate: 29999.968498706\n\n has_lfp_data: True\n lfp_sampling_rate: 1249.99868744608\n location: See electrode locations\n probe_id: 773592315\n probeA 3260 43 773592315 324 True
850022910 7387.0 233.0 233.0 NaN AP band: 500 Hz high-pass; LFP band: 1000 Hz low-pass probeA abc.EcephysElectrodeGroup at 0x140312946183872\nFields:\n description: Ecephys Electrode Group\n device: probeA abc.EcephysProbe at 0x140312946180176\nFields:\n probe_id: 773592315\n sampling_rate: 29999.968498706\n\n has_lfp_data: True\n lfp_sampling_rate: 1249.99868744608\n location: See electrode locations\n probe_id: 773592315\n probeA 3280 59 773592315 326 True
850022912 7384.0 224.0 224.0 NaN AP band: 500 Hz high-pass; LFP band: 1000 Hz low-pass probeA abc.EcephysElectrodeGroup at 0x140312946183872\nFields:\n description: Ecephys Electrode Group\n device: probeA abc.EcephysProbe at 0x140312946180176\nFields:\n probe_id: 773592315\n sampling_rate: 29999.968498706\n\n has_lfp_data: True\n lfp_sampling_rate: 1249.99868744608\n location: See electrode locations\n probe_id: 773592315\n probeA 3280 27 773592315 327 True

... and 2300 more row(s).

electrode_groups
probeA (EcephysElectrodeGroup)
description: Ecephys Electrode Group
location: See electrode locations
device (EcephysProbe)
sampling_rate: 29999.968498706
probe_id: 773592315
has_lfp_data: True
probe_id: 773592315
lfp_sampling_rate: 1249.99868744608
probeB (EcephysElectrodeGroup)
description: Ecephys Electrode Group
location: See electrode locations
device (EcephysProbe)
sampling_rate: 29999.9187814017
probe_id: 773592318
has_lfp_data: True
probe_id: 773592318
lfp_sampling_rate: 1249.996615891735
probeC (EcephysElectrodeGroup)
description: Ecephys Electrode Group
location: See electrode locations
device (EcephysProbe)
sampling_rate: 29999.9961763805
probe_id: 773592320
has_lfp_data: True
probe_id: 773592320
lfp_sampling_rate: 1249.99984068252
probeD (EcephysElectrodeGroup)
description: Ecephys Electrode Group
location: See electrode locations
device (EcephysProbe)
sampling_rate: 29999.9188839116
probe_id: 773592324
has_lfp_data: True
probe_id: 773592324
lfp_sampling_rate: 1249.996620162985
probeE (EcephysElectrodeGroup)
description: Ecephys Electrode Group
location: See electrode locations
device (EcephysProbe)
sampling_rate: 30000.0013018758
probe_id: 773592328
has_lfp_data: True
probe_id: 773592328
lfp_sampling_rate: 1250.000054244825
probeF (EcephysElectrodeGroup)
description: Ecephys Electrode Group
location: See electrode locations
device (EcephysProbe)
sampling_rate: 30000.0387179914
probe_id: 773592330
has_lfp_data: True
probe_id: 773592330
lfp_sampling_rate: 1250.00161324964
devices
probeA (EcephysProbe)
sampling_rate: 29999.968498706
probe_id: 773592315
probeB (EcephysProbe)
sampling_rate: 29999.9187814017
probe_id: 773592318
probeC (EcephysProbe)
sampling_rate: 29999.9961763805
probe_id: 773592320
probeD (EcephysProbe)
sampling_rate: 29999.9188839116
probe_id: 773592324
probeE (EcephysProbe)
sampling_rate: 30000.0013018758
probe_id: 773592328
probeF (EcephysProbe)
sampling_rate: 30000.0387179914
probe_id: 773592330
intervals
dot_motion_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'dot_motion' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
stimulus_block
Index of contiguous presentations of one stimulus type
color
No description
opacity
Opacity of stimulus
units
Units of stimulus size
stimulus_index
Index of stimulus type
contrast
Contrast of stimulus
Speed
Speed of moving dot field
Dir
Direction of stimulus motion
coherence
Coherence of moving dot field
dotLife
Longevity of individual dots
dotSize
Size of individual dots
fieldPos
Position of moving dot field
fieldShape
Shape of moving dot field
fieldSize
Size of moving dot field
nDots
Number of dots in moving dot field
noiseDots
No description
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name stimulus_block color opacity units stimulus_index contrast Speed Dir coherence dotLife dotSize fieldPos fieldShape fieldSize nDots noiseDots tags timeseries
id
0 8302.230584 8303.231427 dot_motion 9.0 [1.0, 1.0, 1.0] 1.0 norm 5.0 1.0 0.001 90.0 0.9 20.0 15.0 [0.0, 0.0] sqr [2.0, 2.0] 500.0 direction [stimulus_time_interval] [(76941, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 8304.232254 8305.233097 dot_motion 9.0 [1.0, 1.0, 1.0] 1.0 norm 5.0 1.0 0.005 45.0 0.9 20.0 15.0 [0.0, 0.0] sqr [2.0, 2.0] 500.0 direction [stimulus_time_interval] [(76942, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 8306.233894 8307.234777 dot_motion 9.0 [1.0, 1.0, 1.0] 1.0 norm 5.0 1.0 0.005 225.0 0.9 20.0 15.0 [0.0, 0.0] sqr [2.0, 2.0] 500.0 direction [stimulus_time_interval] [(76943, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 8308.235614 8309.236457 dot_motion 9.0 [1.0, 1.0, 1.0] 1.0 norm 5.0 1.0 0.010 315.0 0.9 20.0 15.0 [0.0, 0.0] sqr [2.0, 2.0] 500.0 direction [stimulus_time_interval] [(76944, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 491 more row(s).

drifting_gratings_75_repeats_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'drifting_gratings_75_repeats' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
stimulus_block
Index of contiguous presentations of one stimulus type
temporal_frequency
Temporal frequency of stimulus
color
No description
mask
Shape of mask applied to stimulus
opacity
Opacity of stimulus
phase
Phase of grating stimulus
size
Size of stimulus (see ‘units’ field for units)
units
Units of stimulus size
stimulus_index
Index of stimulus type
orientation
Orientation of stimulus
spatial_frequency
Spatial frequency of stimulus
contrast
Contrast of stimulus
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name stimulus_block temporal_frequency color mask opacity phase size units stimulus_index orientation spatial_frequency contrast tags timeseries
id
0 3498.216464 3500.218144 drifting_gratings_75_repeats 5.0 2.0 [1.0, 1.0, 1.0] None 1.0 [14037.96666667, 14037.96666667] [250.0, 250.0] deg 2.0 45.0 0.04 0.8 [stimulus_time_interval] [(40339, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 3501.218987 3503.220647 drifting_gratings_75_repeats 5.0 2.0 [1.0, 1.0, 1.0] None 1.0 [14037.96666667, 14037.96666667] [250.0, 250.0] deg 2.0 90.0 0.04 0.8 [stimulus_time_interval] [(40340, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 3504.221484 3506.223144 drifting_gratings_75_repeats 5.0 2.0 [1.0, 1.0, 1.0] None 1.0 [14037.96666667, 14037.96666667] [250.0, 250.0] deg 2.0 0.0 0.04 0.8 [stimulus_time_interval] [(40341, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 3507.223997 3509.225667 drifting_gratings_75_repeats 5.0 2.0 [1.0, 1.0, 1.0] None 1.0 [14037.96666667, 14037.96666667] [250.0, 250.0] deg 2.0 135.0 0.04 0.8 [stimulus_time_interval] [(40342, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 596 more row(s).

drifting_gratings_contrast_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'drifting_gratings_contrast' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
stimulus_block
Index of contiguous presentations of one stimulus type
temporal_frequency
Temporal frequency of stimulus
color
No description
mask
Shape of mask applied to stimulus
opacity
Opacity of stimulus
phase
Phase of grating stimulus
size
Size of stimulus (see ‘units’ field for units)
units
Units of stimulus size
stimulus_index
Index of stimulus type
orientation
Orientation of stimulus
spatial_frequency
Spatial frequency of stimulus
contrast
Contrast of stimulus
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name stimulus_block temporal_frequency color mask opacity phase size units stimulus_index orientation spatial_frequency contrast tags timeseries
id
0 1636.660934 1637.161346 drifting_gratings_contrast 2.0 2.0 [1.0, 1.0, 1.0] None 1.0 [4198.96666667, 4198.96666667] [250.0, 250.0] deg 6.0 0.0 0.04 0.13 [stimulus_time_interval] [(3798, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 1637.661757 1638.162171 drifting_gratings_contrast 2.0 2.0 [1.0, 1.0, 1.0] None 1.0 [4198.96666667, 4198.96666667] [250.0, 250.0] deg 6.0 135.0 0.04 0.02 [stimulus_time_interval] [(3799, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 1638.662584 1639.163006 drifting_gratings_contrast 2.0 2.0 [1.0, 1.0, 1.0] None 1.0 [4198.96666667, 4198.96666667] [250.0, 250.0] deg 6.0 135.0 0.04 0.35 [stimulus_time_interval] [(3800, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 1639.663427 1640.163846 drifting_gratings_contrast 2.0 2.0 [1.0, 1.0, 1.0] None 1.0 [4198.96666667, 4198.96666667] [250.0, 250.0] deg 6.0 90.0 0.04 0.02 [stimulus_time_interval] [(3801, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 536 more row(s).

flashes_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'flashes' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
stimulus_block
Index of contiguous presentations of one stimulus type
color
No description
mask
Shape of mask applied to stimulus
opacity
Opacity of stimulus
phase
Phase of grating stimulus
size
Size of stimulus (see ‘units’ field for units)
units
Units of stimulus size
stimulus_index
Index of stimulus type
orientation
Orientation of stimulus
spatial_frequency
Spatial frequency of stimulus
contrast
Contrast of stimulus
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name stimulus_block color mask opacity phase size units stimulus_index orientation spatial_frequency contrast tags timeseries
id
0 1276.359894 1276.610090 flashes 1.0 1.0 None 1.0 [0.0, 0.0] [300.0, 300.0] deg 1.0 0.0 [0.0, 0.0] 0.8 [stimulus_time_interval] [(3647, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 1278.361534 1278.611740 flashes 1.0 -1.0 None 1.0 [0.0, 0.0] [300.0, 300.0] deg 1.0 0.0 [0.0, 0.0] 0.8 [stimulus_time_interval] [(3648, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 1280.363164 1280.613382 flashes 1.0 -1.0 None 1.0 [0.0, 0.0] [300.0, 300.0] deg 1.0 0.0 [0.0, 0.0] 0.8 [stimulus_time_interval] [(3649, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 1282.364904 1282.615107 flashes 1.0 -1.0 None 1.0 [0.0, 0.0] [300.0, 300.0] deg 1.0 0.0 [0.0, 0.0] 0.8 [stimulus_time_interval] [(3650, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 146 more row(s).

gabors_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'gabors' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
stimulus_block
Index of contiguous presentations of one stimulus type
temporal_frequency
Temporal frequency of stimulus
x_position
Horizontal position of stimulus on screen
y_position
Vertical position of stimulus on screen
color
No description
mask
Shape of mask applied to stimulus
opacity
Opacity of stimulus
phase
Phase of grating stimulus
size
Size of stimulus (see ‘units’ field for units)
units
Units of stimulus size
stimulus_index
Index of stimulus type
orientation
Orientation of stimulus
spatial_frequency
Spatial frequency of stimulus
contrast
Contrast of stimulus
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name stimulus_block temporal_frequency x_position y_position color mask opacity phase size units stimulus_index orientation spatial_frequency contrast tags timeseries
id
0 75.356384 75.589910 gabors 0.0 4.0 20.0 30.0 [1.0, 1.0, 1.0] circle 1.0 [3644.93333333, 3644.93333333] [20.0, 20.0] deg 0.0 0.0 0.08 0.8 [stimulus_time_interval] [(1, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 75.589910 75.840115 gabors 0.0 4.0 0.0 -20.0 [1.0, 1.0, 1.0] circle 1.0 [3644.93333333, 3644.93333333] [20.0, 20.0] deg 0.0 45.0 0.08 0.8 [stimulus_time_interval] [(2, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 75.840115 76.090321 gabors 0.0 4.0 -20.0 20.0 [1.0, 1.0, 1.0] circle 1.0 [3644.93333333, 3644.93333333] [20.0, 20.0] deg 0.0 0.0 0.08 0.8 [stimulus_time_interval] [(3, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 76.090321 76.340527 gabors 0.0 4.0 30.0 -20.0 [1.0, 1.0, 1.0] circle 1.0 [3644.93333333, 3644.93333333] [20.0, 20.0] deg 0.0 0.0 0.08 0.8 [stimulus_time_interval] [(4, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 3641 more row(s).

natural_movie_one_more_repeats_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'natural_movie_one_more_repeats' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
stimulus_block
Index of contiguous presentations of one stimulus type
color
No description
opacity
Opacity of stimulus
size
Size of stimulus (see ‘units’ field for units)
units
Units of stimulus size
stimulus_index
Index of stimulus type
orientation
Orientation of stimulus
frame
Frame of movie stimulus
contrast
Contrast of stimulus
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name stimulus_block color opacity size units stimulus_index orientation frame contrast tags timeseries
id
0 2297.212884 2297.246246 natural_movie_one_more_repeats 3.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 3.0 0.0 0.0 1.0 [stimulus_time_interval] [(4339, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 2297.246246 2297.279607 natural_movie_one_more_repeats 3.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 3.0 0.0 1.0 1.0 [stimulus_time_interval] [(4340, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 2297.279607 2297.312968 natural_movie_one_more_repeats 3.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 3.0 0.0 2.0 1.0 [stimulus_time_interval] [(4341, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 2297.312968 2297.346330 natural_movie_one_more_repeats 3.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 3.0 0.0 3.0 1.0 [stimulus_time_interval] [(4342, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 53996 more row(s).

natural_movie_one_shuffled_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'natural_movie_one_shuffled' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
stimulus_block
Index of contiguous presentations of one stimulus type
color
No description
opacity
Opacity of stimulus
size
Size of stimulus (see ‘units’ field for units)
units
Units of stimulus size
stimulus_index
Index of stimulus type
orientation
Orientation of stimulus
frame
Frame of movie stimulus
contrast
Contrast of stimulus
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name stimulus_block color opacity size units stimulus_index orientation frame contrast tags timeseries
id
0 3197.965544 3197.998907 natural_movie_one_shuffled 4.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 4.0 0.0 0.0 1.0 [stimulus_time_interval] [(31339, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 3197.998907 3198.032269 natural_movie_one_shuffled 4.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 4.0 0.0 1.0 1.0 [stimulus_time_interval] [(31340, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 3198.032269 3198.065631 natural_movie_one_shuffled 4.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 4.0 0.0 2.0 1.0 [stimulus_time_interval] [(31341, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 3198.065631 3198.098994 natural_movie_one_shuffled 4.0 [1.0, 1.0, 1.0] 1.0 [1920.0, 1080.0] pix 4.0 0.0 3.0 1.0 [stimulus_time_interval] [(31342, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 17996 more row(s).

spontaneous_presentations (TimeIntervals)
description: Presentation times and stimuli details for 'spontaneous' stimuli
columns
start_time
Start time of epoch, in seconds
stop_time
Stop time of epoch, in seconds
stimulus_name
Name of stimulus
tags
user-defined tags
timeseries
index into a TimeSeries object
table
start_time stop_time stimulus_name tags timeseries
id
0 15.289644 75.356384 spontaneous [stimulus_time_interval] [(0, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
1 987.351691 1276.359894 spontaneous [stimulus_time_interval] [(3646, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
2 1574.859290 1636.660934 spontaneous [stimulus_time_interval] [(3797, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]
3 2176.612116 2297.212884 spontaneous [stimulus_time_interval] [(4338, 1, timestamps pynwb.base.TimeSeries at 0x140312943133136\nFields:\n comments: no comments\n conversion: 1.0\n data: <HDF5 dataset "data": shape (77436,), type "<f8">\n description: no description\n interval: 1\n offset: 0.0\n resolution: -1.0\n timestamps: <HDF5 dataset "timestamps": shape (77436,), type "<f8">\n timestamps_unit: seconds\n unit: s\n)]

... and 2 more row(s).

subject (EcephysSpecimen)
age: P133D
genotype: wt/wt
sex: M
species: Mus musculus
subject_id: 744912845
specimen_name: C57BL/6J-412804
age_in_days: 133.0
units (Units)
description:
waveform_unit: volts
columns
amplitude
no description
isolation_distance
no description
velocity_above
no description
quality
no description
cumulative_drift
no description
silhouette_score
no description
nn_hit_rate
no description
waveform_halfwidth
no description
snr
no description
d_prime
no description
recovery_slope
no description
velocity_below
no description
cluster_id
no description
peak_channel_id
no description
firing_rate
no description
local_index
no description
amplitude_cutoff
no description
PT_ratio
no description
isi_violations
no description
repolarization_slope
no description
presence_ratio
no description
nn_miss_rate
no description
waveform_duration
no description
spread
no description
max_drift
no description
l_ratio
no description
spike_times
times (s) of detected spiking events
spike_amplitudes
amplitude (s) of detected spiking events
waveform_mean
mean waveforms on peak channels (and over samples)
table
amplitude isolation_distance velocity_above quality cumulative_drift silhouette_score nn_hit_rate waveform_halfwidth snr d_prime recovery_slope velocity_below cluster_id peak_channel_id firing_rate local_index amplitude_cutoff PT_ratio isi_violations repolarization_slope presence_ratio nn_miss_rate waveform_duration spread max_drift l_ratio spike_times spike_amplitudes waveform_mean
id
950911641 144.38775 111.293247 -0.343384 good 318.83 0.158980 1.000000 0.109883 3.176461 5.588427 -0.085105 0.068677 3 850022274 9.531874 3 0.000609 0.794832 0.000842 0.494906 0.99 0.000121 0.219765 60.0 30.51 0.000238 [3.896731136389826, 4.050031297361607, 4.172231425677013, 4.339998268506101, 4.383164980499678, 4.835365455329681, 4.966765593305494, 4.981565608846148, 5.209165847836218, 5.313765957670844, 5.531632853107149, 5.596932921675037, 5.737333069101249, 6.357533720338684, 6.468400503420256, 7.208201280242982, 7.916868691040998, 10.128971013843854, 11.56540585549573, 14.045341792868768, 15.262943071402631, 16.69584457601102, 17.34341192265133, 17.59701218894255, 18.667213312699893, 18.793480111952142, 18.885180208241202, 19.098513765583974, 19.44168079259082, 19.572380929831603, 20.094048144271344, 20.295915022906943, 20.352181748656097, 20.437915172013223, 20.526948598835496, 20.679882092755594, 20.93948236534708, 20.94531570480567, 20.969549063585074, 20.989749084795967, 21.112015879848045, 21.174515945475807, 22.313917141896212, 22.470683973174815, 22.50228400635621, 22.511650682858292, 22.609350785447614, 23.12168465675361, 23.557185114047876, 23.565951789919932, 24.38038597844429, 24.456719391931003, 24.767186384601402, 24.832786453484307, 24.85278647448519, 25.06555336456627, 25.53825386092218, 25.68952068642554, 25.717154048775093, 25.822054158924733, 25.896087569996343, 25.967320978127827, 26.520721559222306, 27.17652224784132, 27.229655636967003, 29.78675832203512, 29.802725005467494, 30.315658877403518, 31.528293484055492, 31.550493507366475, 31.589226881371523, 31.637293598510315, 35.97166481645372, 36.60749881744018, 36.683932231031896, 36.70209891677437, 36.722132271143586, 36.867099090031665, 36.93849916500482, 36.990665886448795, 37.22573279994587, 37.24546615400007, 37.28956620030702, 37.47309972635847, 37.516466438562055, 37.62633322059359, 37.6485665772729, 37.77486670989349, 37.85890013146554, 37.90170017640743, 38.044600326458756, 38.070467020286564, 38.0932003774909, 38.13393375359604, 38.168700456769244, 38.37463400634169, 38.38523401747216, 38.41430071466011, 38.487767458470024, 38.592434235041324, ...] [8.488747408616182e-05, 8.662365336189803e-05, 8.918456118299888e-05, 0.00010595800324536337, 8.451461773950752e-05, 8.415322185128084e-05, 9.505693781121023e-05, 8.518808709857987e-05, 8.47302064126116e-05, 8.44990730189407e-05, 0.00010587578978391889, 9.189449269356293e-05, 9.988660137203057e-05, 0.00010572528519571235, 9.810298617412773e-05, 8.901195630335541e-05, 8.776619032356016e-05, 8.694668736993947e-05, 0.00010077637627238845, 8.705750009883458e-05, 0.00010973833214059007, 0.00011530581341224665, 0.00010873100029094553, 0.00010102070570008423, 8.741157638562931e-05, 0.00011151563701200066, 0.00014088931074814756, 0.00011746097384262976, 0.0001057409242410399, 8.506943598206883e-05, 9.272714451882815e-05, 0.00016104796471555429, 0.00012902435001666194, 0.00011654885340645706, 0.00013314550256980206, 0.00010911445874070487, 0.00015641702456062106, 9.26879997431289e-05, 0.000113784241832103, 8.867250035447243e-05, 0.00012385979582537753, 0.00012296511603746214, 8.952655446794525e-05, 0.00013773271376566496, 8.483855726525188e-05, 0.0001300369168905265, 8.708477881963511e-05, 8.72453384273345e-05, 9.63637696410963e-05, 9.258843995818782e-05, 9.772779057340756e-05, 0.00012701607210367365, 0.00012227306470052776, 9.51673260786821e-05, 0.00011085913667738205, 0.00011416493656637323, 8.544318841394998e-05, 0.00015357522703456897, 0.00013941073239394057, 0.00014167520578952332, 0.00012592248969282578, 0.00014068292817168986, 0.00014723544291955654, 0.00010606970262700926, 0.00012921428235484987, 9.08509118383733e-05, 8.507369002877735e-05, 9.585401976920752e-05, 8.847473906114465e-05, 9.9765261999839e-05, 0.00012105419071001409, 0.00010939794237657597, 9.43803934649384e-05, 0.00011643357911637985, 0.00015504610848830113, 0.00016919230412534963, 0.0001313829595234443, 0.00011909256582367846, 0.0001439268227202198, 0.00010797391203149396, 0.00014122009825152026, 0.00014744740008937283, 0.00015066475165023585, 0.00017165636871461815, 0.00013758724611968095, 0.00015873016010025984, 0.00016849456500534377, 0.0001886388061493123, 0.00015206206922308165, 0.00016619881351910592, 0.00013978461688048672, 0.00013827733550159232, 0.00013949829406931794, 0.00011515483720023652, 0.00013010830186944018, 0.00016166271691107776, 0.0001230289078731378, 0.00014124024602041028, 0.00013742580929170683, 0.0001979886725959793, ...] [[0.0, -1.5732600000000003, -1.9893900000000029, -2.4410099999999995, 1.38762, 3.335669999999997, -1.1543999999999996, 4.513860000000002, 4.561440000000002, -1.8404100000000014, -3.6870599999999993, -2.805270000000001, -3.3929999999999967, -3.4986900000000003, -3.4823099999999987, -2.6718900000000003, -3.8102999999999985, -9.192690000000002, -7.633079999999999, -12.891450000000003, -11.246820000000003, -7.050420000000007, -1.892669999999999, 0.9168900000000004, 6.942000000000001, 7.156500000000004, 5.559060000000002, 5.963880000000007, 4.645680000000004, 5.1639900000000045, 4.757219999999992, 4.62228, 1.950779999999999, 2.912910000000001, 0.9995699999999994, 3.41718, 0.7421699999999984, 1.8443099999999966, -0.49568999999999874, 0.8034000000000028, 0.06669000000000025, -0.6013799999999996, 1.8045299999999997, -0.768690000000001, 2.312310000000001, -2.37939, -1.3911299999999993, 0.5600399999999999, -0.7776600000000007, -2.1563099999999995, -1.6364400000000008, 1.2905100000000012, 0.7835099999999997, 1.1185200000000002, 0.15483000000000113, -1.1820899999999992, -3.8270699999999995, -1.8610799999999996, -0.7269600000000007, 2.2854000000000014, -2.093910000000002, 1.1528399999999983, 2.3146499999999994, -0.014819999999998723, 0.053039999999998644, -1.6298100000000004, -6.4779, -3.5997000000000035, -0.8365499999999996, 4.615259999999999, -1.4429999999999994, -3.734640000000001, -3.001050000000001, -3.383249999999999, 1.6512600000000024, 2.404350000000005, -2.1099000000000006, -1.1551800000000005, -2.69139, 0.22151999999999905, 0.5647200000000006, -1.2121199999999992], [0.0, -0.5791499999999992, -1.0826399999999998, -1.2764700000000009, -1.6036799999999982, -0.9987899999999996, 0.4828200000000005, -0.09749999999999993, 0.1950000000000002, -0.2527200000000002, 0.05381999999999997, -0.13844999999999982, -0.3907799999999997, 1.2659400000000007, 2.43516, 3.4050900000000035, 0.9133799999999996, -2.3212800000000007, -7.131929999999999, -10.065119999999991, -9.06906, -6.661199999999995, -2.8481700000000005, 1.0214100000000015, 3.17655, 3.717870000000002, 4.07628, 4.366439999999995, 3.6858900000000014, 3.5209199999999976, 2.7553499999999986, 2.0182500000000005, 1.5923700000000007, 1.5771600000000008, 2.5131600000000023, 1.7819100000000005, 1.34784, 0.7491899999999998, 0.8775000000000006, 0.37869, -0.07955999999999991, 0.9009000000000004, 0.6852300000000002, 0.45785999999999977, 0.15210000000000004, -1.2390300000000003, -0.8178299999999996, -1.1781900000000007, -0.99957, -0.6423299999999997, -0.4641, 0.016380000000000373, 0.3607500000000004, 0.1692600000000001, -0.44265000000000027, -0.7944299999999994, -2.1383699999999997, -1.9371299999999985, -0.8755500000000002, 0.22659000000000026, 0.43290000000000023, 0.13416000000000017, -0.49178999999999967, 0.23244000000000056, -0.14312999999999995, -0.5869500000000005, -0.8544899999999997, -1.12671, -1.0159500000000004, -0.8856900000000004, -0.3057600000000005, -0.5853899999999992, -1.329119999999999, -0.7074600000000002, -0.48243, -0.0019499999999996742, 0.16770000000000024, 0.52806, -0.27455999999999975, 0.06396000000000018, 0.24882000000000046, 0.42159000000000024], [0.0, 0.8256300000000003, 0.6165900000000035, 1.5802800000000023, 1.3166400000000005, 1.328730000000005, 1.5522000000000018, 1.3123500000000035, 1.0892700000000008, 0.9995700000000025, 0.9640800000000005, 0.7503600000000032, 0.30459000000000014, 1.261260000000005, 1.6536000000000022, -0.5931899999999928, -6.930300000000008, -14.346930000000002, -18.088589999999982, -15.051659999999996, -5.246279999999997, 6.789510000000005, 14.92023, 19.080750000000002, 19.985940000000006, 18.36666000000003, 16.240769999999998, 14.594970000000004, 12.930060000000006, 11.80725, 10.050300000000002, 8.56596, 6.897540000000005, 4.874610000000002, 5.763420000000003, 4.580550000000003, 4.508790000000003, 2.0026500000000054, 1.7565600000000012, 2.239380000000002, 1.8271500000000036, 2.2112999999999996, 0.7616700000000041, 0.6470100000000012, -0.1146599999999971, -1.0471499999999931, 0.0830700000000002, 0.45630000000000237, 1.310400000000001, 0.905189999999997, -0.029639999999996114, 0.6103500000000013, 0.6060599999999998, 1.3182000000000027, 0.8973899999999997, 1.1017500000000013, 0.6926400000000039, -0.14975999999999878, 0.532740000000004, 1.433640000000001, 1.8778500000000022, 0.23048999999999875, -0.3307199999999977, -0.45902999999999494, 0.12090000000000511, 0.06786000000000225, 1.2203100000000013, 0.3049800000000049, -0.23594999999999722, 0.2831400000000013, 0.6809400000000054, 1.7023500000000014, 0.5939700000000014, 1.6789500000000017, 1.8856500000000005, 2.4956100000000037, 1.7546100000000044, 1.7089799999999995, 2.2409400000000037, 1.3864500000000026, 1.7105400000000026, 0.059670000000000556], [0.0, -0.6606599999999823, 0.10140000000001947, 0.1918800000000207, 0.2199600000000146, -0.631799999999993, -0.29171999999999443, -0.3342299999999945, -0.15053999999999412, 0.36348000000002045, -0.13103999999998095, -0.6353099999999827, -0.26324999999999577, 1.471860000000003, 4.2279900000000135, 6.138600000000007, 3.272490000000005, -2.637569999999986, -9.613109999999999, -13.315770000000008, -12.482340000000011, -7.706789999999991, -1.549079999999993, 4.27284000000001, 7.56327000000001, 9.193080000000007, 9.220770000000009, 8.08080000000001, 7.855770000000009, 6.2314200000000115, 5.766540000000012, 4.651140000000008, 3.00612000000001, 3.202680000000014, 2.556840000000019, 3.337230000000008, 2.6426400000000108, 1.4219400000000064, 1.5993900000000103, 0.8665800000000168, 0.9941100000000169, 0.4360200000000134, 0.48672000000000537, 0.11700000000001154, -0.5522399999999941, -0.440699999999989, -0.42626999999998816, 0.7195500000000123, 0.0698100000000057, 0.10530000000000328, 0.15366000000001456, 0.3478800000000053, 0.32994000000002544, 0.8689199999999992, -0.05186999999999564, -0.2176199999999895, -0.8864699999999885, -1.5830099999999945, -0.43523999999999496, 0.49101000000001704, 0.08424000000001008, -0.14780999999998734, -0.04835999999998819, 0.26559000000001376, -0.8997299999999857, -0.49412999999998597, -0.8868600000000004, -0.7702499999999937, -0.08891999999999989, 0.552630000000006, -0.15950999999999382, 0.2749500000000147, -0.07409999999999073, -0.26168999999999976, -0.5420999999999783, -0.9824099999999927, 0.5034900000000135, 0.8193900000000038, -0.20123999999999853, -0.0015599999999889036, 1.079910000000007, -0.02963999999999345], [0.0, 0.18797999999999937, -0.7382700000000014, -0.29796000000000017, -0.2960100000000011, -1.5354300000000014, -1.6653000000000007, -1.5213900000000011, -1.4125800000000015, -0.734760000000001, 0.12011999999999952, -0.9379500000000011, 0.519479999999998, 6.3757199999999985, 14.099669999999994, 17.632289999999987, 10.276110000000008, -7.750079999999996, -27.022710000000004, -36.40844999999997, -29.489459999999998, -15.084029999999991, 0.14429999999999815, 10.965630000000006, 17.666610000000002, 20.13257999999999, 20.668440000000015, 18.424769999999988, 15.890940000000013, 13.477619999999996, 11.588459999999989, 9.29876999999999, 7.612019999999998, 6.122219999999999, 4.7026200000000005, 4.559099999999996, 3.5989199999999975, 1.7374500000000013, 0.1333799999999989, -0.05577000000000062, 0.08501999999999917, -1.1181300000000014, -1.382160000000001, -1.0069800000000004, -2.2050600000000014, -3.0845100000000008, -2.54631, -1.7534400000000026, -2.2506900000000014, -2.011230000000001, -1.6017299999999992, -1.23942, -1.334190000000001, -1.3072800000000016, -1.5408900000000008, -1.6703699999999997, -2.1067800000000005, -2.862600000000002, -1.847040000000001, -1.4492399999999983, -1.5089099999999989, -1.551420000000001, -1.3439400000000008, -1.671540000000002, -2.348190000000001, -1.6454100000000014, -0.5967000000000013, -0.9828000000000005, -1.4047800000000004, -2.11497, -1.5603900000000026, -1.4371499999999997, -1.926990000000003, -0.8361599999999999, -0.4364100000000008, -0.7125300000000007, -0.62634, -1.0085400000000002, -0.566280000000001, -0.9196200000000011, -0.6306300000000002, -0.6723600000000011], [0.0, 0.3435900000000023, -0.32330999999999976, 0.39468000000000325, -0.089309999999998, -0.9831900000000018, -0.6692399999999967, -0.4219799999999987, -0.9867000000000039, -0.6243899999999987, -0.06434999999999924, 0.1119300000000032, 0.5834400000000017, 4.138290000000003, 8.759790000000004, 11.699610000000002, 6.334769999999999, -5.995079999999991, -19.342829999999996, -26.105039999999995, -22.698000000000018, -13.889460000000003, -3.5135099999999997, 3.9596700000000027, 8.90097000000001, 11.1306, 10.915319999999998, 9.624029999999998, 8.128770000000003, 7.78674, 6.7918500000000055, 5.46156, 4.485780000000003, 3.9113100000000003, 3.936659999999999, 3.681210000000001, 2.6539500000000014, 2.3860200000000016, 1.2542400000000014, 1.2940200000000024, 1.113840000000001, 1.107990000000001, 0.5358600000000016, 0.21450000000000102, -0.11504999999999965, -0.7889699999999991, -1.0385700000000004, -0.22307999999999728, 0.2121600000000008, -0.5268900000000007, -0.28547999999999885, 0.8342099999999997, 0.7995000000000028, 0.35919000000000323, -0.022230000000001304, 0.11349000000000009, -0.8462999999999989, -1.0670400000000044, -0.320969999999996, -0.4594199999999953, 0.17082000000000042, 0.8739900000000009, 0.26871000000000134, 0.2854800000000024, -0.4761899999999981, -0.6707999999999998, -1.276470000000001, -1.6442399999999995, -1.16844, -0.6029399999999985, -0.22892999999999786, -0.29835000000000056, -1.1594699999999998, -0.4976400000000005, -0.6629999999999985, -0.5069999999999979, -0.3740099999999993, -0.7511399999999999, -0.6388199999999977, -1.0081499999999992, -0.10335000000000027, -1.0802999999999998], [0.0, -1.0728900000000006, -1.7542200000000014, -1.1672700000000023, -1.10097, -2.040090000000001, -2.5513800000000013, -1.1154000000000004, -1.2324000000000033, -1.8844800000000013, -2.261610000000002, -1.2881700000000003, 2.192579999999996, 11.299080000000004, 15.569190000000027, 1.652429999999998, -26.208780000000026, -45.655349999999935, -41.40240000000001, -18.33701999999999, 8.183369999999995, 26.846040000000006, 36.836280000000016, 40.869659999999975, 39.787799999999976, 36.35541000000003, 31.400459999999995, 26.145990000000015, 20.980050000000013, 15.82152, 12.045539999999988, 8.736389999999997, 5.999759999999995, 3.9035099999999954, 2.745210000000001, 2.0506199999999977, 0.20396999999999554, -1.8220800000000015, -3.6956400000000014, -3.43044, -3.0864600000000006, -4.963140000000003, -4.787250000000002, -5.555550000000002, -5.90655, -6.574620000000005, -6.0325200000000025, -6.1385999999999985, -5.924490000000001, -5.5446300000000015, -4.745130000000001, -4.355520000000001, -4.282980000000003, -3.7319100000000014, -4.585620000000002, -3.8325300000000015, -4.036890000000001, -3.9234000000000027, -3.2709300000000012, -2.179320000000001, -3.1235100000000022, -2.950740000000002, -2.7721200000000015, -3.027960000000001, -3.334110000000001, -4.009590000000001, -3.619590000000001, -3.460470000000001, -3.515850000000002, -3.2373900000000013, -3.1227300000000016, -3.2303700000000015, -2.9620500000000014, -1.6887000000000016, -1.3965900000000022, -2.3770500000000014, -2.8821000000000017, -2.744040000000001, -2.2284600000000014, -2.569710000000001, -3.3243600000000018, -3.5817600000000005], [0.0, -0.6528599999999998, -0.7363200000000003, -0.3806400000000007, -0.1661399999999998, -1.4648399999999988, -2.5236900000000007, -1.598999999999999, -1.7592899999999998, -0.9804600000000006, -0.8408399999999994, 0.2815800000000003, 3.364140000000001, 11.308049999999989, 24.369539999999994, 30.370859999999997, 15.982589999999993, -14.10357000000001, -41.88326999999998, -52.93002000000006, -43.79232000000001, -26.097240000000003, -7.796489999999999, 7.751249999999994, 16.57227, 20.510099999999998, 20.088509999999992, 17.96496000000001, 15.899130000000003, 14.355119999999994, 12.325169999999998, 10.324469999999996, 8.691539999999994, 6.8359200000000016, 6.263009999999997, 5.35392, 3.9818999999999987, 2.0202000000000013, 1.1610300000000005, 1.61772, 1.3989300000000018, 0.8279700000000004, 0.039000000000000146, -0.6208800000000003, -1.59861, -2.681249999999999, -2.5704900000000017, -2.5244700000000004, -2.4944399999999987, -2.5283700000000016, -1.8747300000000007, -1.3911300000000022, -0.6719700000000006, -1.4156999999999995, -2.64732, -2.678519999999999, -2.5088699999999986, -2.726880000000001, -1.3603200000000026, -1.5440100000000019, -0.8420100000000001, -1.5670200000000014, -1.711319999999999, -1.7234099999999988, -1.766310000000001, -1.8205200000000021, -2.5248600000000003, -2.403960000000001, -2.0162999999999975, -1.257750000000001, -0.9141599999999996, -1.896569999999998, -1.8435300000000001, -1.327559999999999, -0.5128500000000003, -0.7718100000000003, -0.5608199999999997, -0.9551100000000003, -1.6816799999999994, -2.3267399999999996, -2.2198799999999985, -2.5295399999999995], [0.0, -0.8845199999999993, -1.2725699999999995, -0.33929999999999927, -0.8345999999999951, -2.668769999999999, -2.3758799999999987, -2.0595899999999974, -1.570139999999998, -1.587299999999998, -0.4192499999999999, 2.4878100000000005, 14.188980000000008, 33.54858, 56.24463000000004, 59.54403000000009, 28.496130000000008, -25.225980000000007, -70.84232999999995, -84.84371999999998, -67.98324000000001, -38.85764999999999, -10.918050000000001, 10.872030000000008, 23.62152, 28.688399999999966, 29.00507999999999, 27.362010000000005, 23.985780000000002, 21.14892000000002, 17.709900000000008, 13.833689999999997, 11.957399999999998, 9.867779999999998, 7.382310000000002, 6.287580000000004, 3.900780000000008, 1.295189999999999, -0.6427199999999997, -0.8611199999999997, -1.1976899999999988, -1.333799999999999, -2.545919999999998, -2.8848299999999987, -4.169879999999999, -3.830189999999999, -4.86525, -5.00253, -5.992739999999999, -5.199479999999998, -4.7033999999999985, -4.226819999999999, -3.9928199999999983, -3.4741199999999983, -4.217069999999998, -3.683939999999998, -3.7436099999999977, -3.212819999999998, -2.883269999999999, -1.865759999999998, -2.2163699999999986, -2.6664299999999987, -2.7830399999999984, -3.062669999999999, -1.7959499999999986, -2.943719999999999, -3.2174999999999985, -3.9456299999999986, -3.1726499999999986, -3.5879999999999987, -2.662919999999999, -2.7912299999999988, -2.8676699999999995, -1.7284799999999976, -1.8544499999999986, -1.48629, -1.8961799999999973, -2.6539499999999983, -3.6476699999999984, -3.4109399999999988, -3.2557199999999984, -2.133299999999997], [0.0, -0.8505899999999997, -1.3517399999999997, -0.6509100000000001, -1.1138399999999984, -2.53188, -3.018989999999999, -1.6118699999999992, -1.195349999999999, -1.412969999999999, -0.70902, 0.3439800000000007, 3.914040000000005, 10.176269999999999, 18.163079999999997, 19.85646, 6.269639999999999, -17.917770000000004, -37.10303999999996, -43.88630999999996, -35.53485, -21.305699999999995, -6.828509999999998, 3.7490700000000023, 10.485149999999999, 12.650430000000009, 12.430470000000001, 11.07054, 10.403250000000012, 9.356879999999995, 7.522710000000003, 6.498959999999991, 6.199440000000002, 5.296979999999999, 3.7159199999999992, 3.5365200000000008, 2.668379999999998, 0.8868600000000004, 0.8619000000000001, 0.9028499999999999, 1.2093900000000002, 1.2281100000000007, 0.5268900000000005, -0.3217499999999997, -1.16883, -1.857570000000001, -2.544750000000001, -2.703479999999998, -2.4776699999999985, -1.6750499999999993, -1.4909699999999981, -1.0210199999999996, -0.5374200000000002, -1.1711699999999983, -1.6832400000000005, -1.5089099999999998, -2.101709999999996, -2.2229999999999994, -2.16489, -1.5494699999999981, -0.9976200000000002, -1.1345099999999992, -0.8119799999999993, -1.8415800000000007, -1.5490800000000005, -1.6270800000000014, -1.0756199999999985, -2.054130000000003, -2.0845499999999997, -1.709759999999999, -2.2775999999999996, -2.33883, -2.262000000000001, -2.24211, -1.8216899999999987, -2.132909999999998, -2.643420000000002, -2.8255500000000002, -2.3782200000000007, -2.2682399999999987, -2.2007700000000003, -3.578640000000001], [0.0, -0.9469200000000011, -1.5486900000000015, -1.659840000000001, -1.4628900000000014, -1.0881000000000014, -1.5642900000000015, -1.102530000000002, -1.4921400000000014, -0.6060599999999996, -0.31395000000000195, 2.1933600000000015, 8.313630000000003, 13.193699999999994, 11.870039999999998, -2.177760000000002, -22.90938000000002, -36.014160000000025, -33.008040000000015, -17.42598, 0.8954400000000016, 14.251379999999994, 22.10207999999999, 25.69866000000001, 25.75598999999997, 22.889880000000005, 19.654830000000025, 16.668990000000022, 13.708500000000008, 11.513970000000004, 7.805460000000002, 5.703359999999991, 5.630819999999993, 4.017390000000001, 2.274870000000002, 1.5377699999999996, 0.2765100000000005, -0.7866300000000004, -1.4582100000000018, -1.6017300000000012, -2.256540000000001, -2.238600000000001, -1.553370000000001, -2.8419300000000014, -3.589170000000002, -3.2479200000000015, -3.8594400000000006, -4.531410000000002, -4.326270000000001, -4.344990000000001, -4.0755, -3.1445700000000008, -3.134040000000001, -3.2280300000000017, -3.93081, -3.169920000000001, -3.374670000000001, -3.4944000000000015, -3.2502600000000013, -1.7222400000000015, -0.7148700000000014, -0.4894500000000028, -0.6684600000000014, -1.0003500000000018, -1.2288900000000011, -2.8364700000000016, -2.9515200000000013, -1.6610100000000019, -1.583010000000001, -1.314690000000002, -1.4843400000000018, -0.8240700000000014, -0.976950000000002, -1.6079700000000006, -2.1925800000000017, -2.4008400000000014, -2.483910000000001, -2.0525700000000016, -2.2776000000000014, -3.0681300000000014, -3.2880900000000013, -2.7678300000000013], [0.0, -1.0795200000000005, -1.2768599999999992, -0.0031199999999999006, -0.9804599999999999, -2.8142400000000007, -4.001789999999999, -2.04828, -1.5131999999999999, -1.3919099999999993, -0.7468499999999993, 1.4995500000000002, 5.567639999999986, 12.561120000000004, 20.096700000000013, 17.45015999999999, 0.6435000000000007, -22.924979999999998, -38.52264, -41.100150000000006, -31.042830000000006, -16.933799999999998, -3.16056, 5.86287, 11.59626000000001, 13.521299999999998, 13.114920000000014, 11.81505000000001, 11.301029999999992, 10.684050000000008, 8.7399, 6.78834, 6.02901, 5.458049999999995, 4.3703399999999935, 3.540030000000001, 2.9363100000000024, 1.2000299999999995, 0.7991100000000025, 0.8942699999999993, 0.6388200000000009, 0.4052100000000002, -0.24725999999999926, -1.5034500000000004, -2.0432099999999997, -2.5478699999999996, -2.9117399999999996, -3.0049500000000013, -3.6379199999999985, -3.46554, -2.5977899999999994, -1.73862, -0.8505899999999996, -2.2070099999999986, -3.1219500000000044, -1.6099200000000007, -1.8470400000000007, -2.1141900000000002, -1.6387799999999995, -0.8092499999999994, -0.9250799999999999, -0.8065199999999998, -0.5179199999999994, -0.9133799999999994, -0.4414799999999996, -1.2550199999999996, -2.1340799999999995, -2.6176800000000005, -2.478840000000001, -1.8127200000000006, -1.6516499999999992, -2.1032699999999993, -2.8481700000000005, -2.2284599999999988, -1.3002599999999993, -1.9386899999999998, -2.3657399999999993, -3.41874, -3.2428499999999967, -2.877029999999999, -1.43988, -2.22729], [0.0, -0.9917700000000038, -1.5221700000000027, -1.39269, -1.290510000000002, -2.1407099999999963, -2.570100000000004, -2.0747999999999993, -2.9784300000000017, -2.5782900000000013, -2.192970000000002, -0.6403800000000008, 2.7405299999999992, 5.991959999999999, 7.712640000000006, 4.712759999999998, -5.033339999999997, -16.078529999999986, -20.207069999999995, -19.434090000000023, -12.850500000000011, -5.100809999999997, 1.7444699999999993, 5.865210000000002, 7.394009999999998, 7.643219999999998, 7.140120000000001, 6.847619999999994, 5.528639999999998, 5.516549999999999, 3.7705199999999994, 3.2334899999999998, 2.756129999999999, 0.9040199999999989, 1.7015699999999987, 1.2327899999999987, 0.7324199999999994, -0.15366000000000168, -0.7605000000000035, -0.20709000000000177, 0.1474199999999981, 0.3849299999999998, -0.2047500000000042, -1.3408200000000026, -1.628639999999998, -2.5821899999999993, -3.329040000000002, -3.5302800000000043, -3.028740000000002, -3.522869999999997, -2.9012099999999976, -2.4468600000000023, -2.0728500000000047, -1.9893899999999998, -1.955849999999999, -1.3579800000000004, -1.6087500000000041, -2.2222200000000005, -1.9098300000000057, -0.5389800000000005, -0.25077000000000194, -0.06903000000000148, -0.43953000000000086, -0.8197799999999993, -1.2203100000000044, -1.9160700000000022, -2.373929999999999, -2.667600000000007, -2.7498900000000064, -2.1219900000000043, -1.6274700000000042, -1.6961100000000027, -1.0479300000000018, -1.6563300000000027, -2.5272000000000046, -1.67076, -2.1808800000000006, -1.746029999999998, -2.828279999999998, -3.0291300000000017, -2.334150000000004, -2.1590399999999996], [0.0, -0.2889900000000005, -0.2901600000000024, -0.3989699999999994, -1.823640000000001, -2.6469299999999967, -2.322840000000003, -1.4586000000000001, -0.8365499999999981, -1.0128300000000032, -1.4238900000000019, -0.33657000000000137, 2.4441299999999986, 5.97558, 10.11777, 11.418029999999991, 4.74981, -6.706829999999994, -16.146000000000022, -21.791249999999984, -20.664149999999996, -15.696329999999996, -9.691890000000011, -4.085640000000001, -0.3443700000000023, 1.623959999999999, 2.2565399999999998, 3.0384899999999995, 3.3777899999999996, 3.9155999999999986, 3.2373899999999987, 2.2935899999999996, 2.5396799999999997, 3.1465199999999998, 3.1558799999999994, 3.0092399999999992, 1.788149999999999, 0.7242299999999977, 0.17589000000000032, 0.17667000000000055, 0.7008300000000003, -0.30303000000000235, -1.455480000000001, -1.3135200000000005, -2.131349999999993, -2.2284599999999957, -2.2768200000000007, -2.0942999999999996, -2.6835900000000024, -3.013140000000001, -3.3360600000000025, -1.4859000000000013, -0.007410000000000583, -1.0112700000000023, -0.5908500000000001, -1.265550000000001, -1.0467600000000048, -1.2249899999999978, -0.7675199999999989, -0.9024600000000014, 0.21020999999999912, 0.9465299999999988, 0.6025499999999999, 0.35568000000000044, -0.17238000000000175, -0.8014500000000022, -0.8108099999999996, -0.9012900000000026, -1.521779999999998, -1.167659999999998, -0.37752000000000185, -0.9032400000000007, -0.6871799999999979, -1.902029999999999, -1.9893899999999967, -1.9070999999999998, -2.4835200000000066, -3.932760000000002, -3.6987600000000027, -3.032639999999997, -2.52135, -2.9394300000000033], [0.0, 0.4656600000000004, 0.07721999999999785, -1.4184300000000014, -1.94727, -1.3603200000000004, -1.1118900000000007, -1.7195100000000008, -2.13174, -2.45505, -2.2288500000000013, -0.6891300000000018, 0.13844999999999885, 1.312740000000001, 1.6360500000000016, -1.51476, -4.997850000000002, -8.5917, -8.89356, -6.356610000000001, -3.0798300000000003, -0.6037200000000018, 1.8084300000000033, 3.3399599999999943, 3.878159999999996, 5.476379999999995, 4.537649999999997, 4.082519999999991, 3.572400000000001, 3.284189999999999, 3.4320000000000013, 2.0950799999999967, 0.3720599999999965, 1.2663299999999997, 1.50267, 1.0342799999999983, 0.8271899999999979, -0.48906000000000094, 0.16886999999999897, -1.0120500000000017, -0.6977100000000013, 0.3003000000000007, 0.4461599999999992, -0.5729100000000009, -1.054950000000001, -1.7175600000000004, -2.042040000000001, -3.2065800000000007, -2.793180000000001, -2.9359200000000003, -2.158260000000001, -1.4648400000000013, -2.861820000000001, -2.0241000000000016, -1.9800300000000006, -1.3759200000000011, -0.5214300000000018, -1.496040000000001, -0.37011000000000105, -0.07683000000000062, 0.0935999999999988, -0.27144000000000035, 0.23477999999999954, 1.0822500000000004, 0.6216599999999997, -0.022230000000002192, -0.4832099999999999, -1.497600000000001, -1.8279300000000014, -0.8537100000000012, -0.5889000000000002, -0.8697000000000003, -0.2230800000000004, -0.9800700000000007, -2.1087300000000004, -0.8186100000000023, -1.4679600000000015, -1.6005599999999998, -2.5291500000000005, -1.5455700000000006, -2.5080899999999993, -2.1914100000000003], [0.0, 0.42705000000000065, -0.6084000000000006, 0.3607500000000007, -0.16067999999999905, -1.5506399999999996, -2.2124699999999984, -1.4051700000000018, -2.370030000000002, -2.4959999999999996, -2.8711800000000025, -1.25814, 1.1458199999999994, 3.6776999999999984, 5.814899999999997, 5.702580000000006, 1.2675, -4.1363400000000015, -9.136530000000002, -11.159850000000004, -10.574070000000003, -7.354230000000001, -3.6944700000000013, -1.0467599999999977, 0.25389, 1.0818600000000007, 1.7865900000000003, 1.9542900000000003, 1.8119399999999994, 2.135250000000001, 1.6976700000000005, 1.1972999999999994, 0.9285899999999999, 1.7897099999999995, 2.5233, 2.0354099999999997, 1.9109999999999987, 1.2624300000000002, 1.3747500000000001, 0.7546499999999998, 0.7640100000000003, 1.23474, -0.14741999999999966, -0.94653, -1.7682600000000015, -1.3712400000000011, -1.6680300000000003, -1.6777800000000012, -1.63761, -1.7460300000000024, -2.0872799999999967, -0.7569900000000004, -0.20592000000000066, -0.8654100000000003, -0.7031699999999986, -1.0752300000000008, -1.5323100000000025, -1.919579999999998, -0.9590099999999998, -0.3974099999999995, -0.6692400000000006, 0.5424900000000008, 0.8521499999999999, 0.7940400000000001, 0.1271399999999988, 0.42041999999999996, 0.22542000000000018, -1.3642199999999973, -0.9851400000000009, -0.7156500000000005, -0.17276999999999954, 0.33734999999999943, 0.14781000000000022, -0.27573000000000036, -0.8076899999999981, -1.3509599999999984, -1.5307500000000007, -2.04321, -1.970279999999998, -2.02137, -2.3017800000000026, -1.1937900000000012], [0.0, -0.2468699999999977, -0.21371999999999858, 0.22971000000000075, 0.09243000000000468, -1.3295100000000004, -1.4788799999999998, -1.7690400000000004, -3.0435600000000007, -3.8348699999999996, -2.643419999999999, -1.278029999999999, -0.3513899999999994, 1.4609400000000008, 2.2374299999999954, 0.4687799999999953, -1.3053299999999979, -3.9581099999999996, -5.1581399999999995, -5.76693, -5.469359999999998, -3.13521, -1.1875500000000003, -0.2016300000000033, 1.5951000000000013, 1.8669299999999929, 1.6048500000000043, 1.0884899999999984, 1.0463700000000014, 1.3946399999999937, 1.5834000000000001, 0.7328099999999953, 0.036660000000003024, -0.7324199999999985, 1.1263200000000033, 0.9597900000000061, 0.6091800000000003, -0.11504999999999654, -0.023399999999999643, -0.007019999999994475, 0.4438200000000023, 0.49529999999999763, 0.9960600000000008, -0.27065999999999324, -1.2893399999999984, -0.46253999999999973, -1.7343299999999986, -1.8708300000000038, -1.3552499999999985, -2.4261899999999987, -1.9121699999999993, -0.9164999999999983, -1.4125800000000073, -1.378649999999999, -1.6855799999999976, -1.0116600000000022, -0.6208799999999997, 0.3494400000000031, 0.7959900000000024, -0.13260000000000094, 0.0721500000000006, 0.46722000000000197, 1.081859999999999, 1.7331600000000025, 0.8205599999999968, 0.5362500000000017, -0.8712600000000004, -2.188679999999996, -2.231189999999997, -1.3665599999999989, -0.8037899999999958, -0.6025499999999981, 0.35333999999999843, 0.02963999999999789, -0.42899999999999494, -0.04406999999999428, -1.2897299999999965, -0.9118199999999996, -1.246050000000002, -1.22226, -0.769079999999998, -0.15170999999999868], [0.0, 0.21021000000000023, 0.2944499999999999, -0.18641999999999825, -1.379430000000001, -1.9496099999999985, -2.0646600000000017, -1.6641299999999992, -2.3458499999999995, -3.152760000000002, -2.9132999999999973, -1.1450400000000007, 0.22580999999999984, 2.038920000000001, 3.431609999999999, 3.7295700000000007, 1.8965699999999999, -0.7058999999999993, -2.9647799999999997, -5.516549999999999, -6.301229999999993, -5.336369999999995, -3.8044500000000006, -2.2752600000000016, -0.5475600000000007, 0.022229999999998862, -0.16652999999999896, -1.059239999999999, 0.19227000000000016, -0.0850200000000001, -1.3334100000000007, -1.14738, -0.40559999999999974, 1.1778, 1.86849, 2.1001500000000006, 2.0560800000000024, 1.46757, 0.5928000000000002, 0.15873000000000048, 0.7051200000000003, 0.7374899999999995, 0.2710500000000017, -0.7932599999999987, -1.6929899999999982, -1.9909499999999989, -2.4062999999999994, -1.8080400000000014, -2.0248799999999982, -2.845440000000005, -1.9523399999999982, -1.419989999999998, -0.93249, -1.2480000000000007, -1.2834900000000005, -2.147340000000002, -2.1091199999999968, -1.792049999999998, -1.1906700000000003, 0.051479999999998416, 0.22152000000000038, 1.21251, 0.6684600000000002, 0.7554300000000003, 0.043680000000000385, 0.3244800000000001, -0.3451500000000003, 0.4325100000000007, 0.70278, 0.2082600000000001, 0.17628000000000066, -0.0023399999999991206, 0.4679999999999993, 0.5432700000000003, -0.9055799999999996, -0.795599999999999, -1.3318499999999975, -1.642290000000001, -1.787370000000001, -0.6388200000000002, -0.4925700000000006, -0.6801599999999994], [0.0, 0.7304699999999997, 0.7885799999999987, 1.0787399999999998, -0.5077800000000019, -1.1540099999999995, -1.5381599999999982, -2.0502300000000018, -1.3821599999999994, -1.3146900000000024, -1.4055599999999986, -0.38258999999999954, 0.71955, 1.5385499999999996, 0.6813299999999991, -0.10218000000000038, -1.0514399999999986, -1.993290000000001, -1.6914300000000035, -2.0588099999999994, -1.9421999999999984, -1.4566499999999993, -0.5058300000000007, 0.9929399999999999, 1.9328400000000001, 2.2054500000000004, 1.00542, 0.5690100000000009, 1.4352000000000005, 2.43516, 2.66565, 1.3010400000000004, 0.5592600000000002, 0.82251, 1.74525, 2.05608, 1.2339600000000002, 1.2242100000000002, 1.3377, 1.1926199999999998, 1.1185199999999997, 0.30537000000000036, -0.35100000000000064, -0.41846999999999857, -0.11544000000000176, -0.8377200000000005, -2.0139599999999995, -1.4851200000000007, -1.9394700000000027, -2.257709999999998, -1.0093200000000007, -0.45513000000000114, -0.9301500000000034, -1.622399999999998, -0.7686900000000021, -0.06318000000000046, -0.01364999999999994, 0.6528599999999987, 0.8911499999999999, 1.1493299999999969, 1.19964, 1.4788799999999995, 0.83772, 1.32483, 2.8875599999999997, 2.16099, 0.76635, -0.5027099999999998, -1.0089299999999999, -0.3260400000000008, 0.11895000000000056, 0.15911999999999993, 0.9863099999999998, 1.1239800000000004, 1.8525000000000007, 1.11228, 0.3248699999999991, -0.04485000000000161, 0.38960999999999957, -0.013649999999999718, -0.6068400000000009, 0.472679999999999], [0.0, -0.21839999999999726, -0.7476299999999954, -0.8014499999999973, -2.252249999999997, -2.725709999999997, -3.471779999999997, -4.125809999999998, -4.677659999999998, -3.583319999999997, -2.612609999999997, -2.1711299999999976, -1.2854399999999975, -0.17783999999999534, 0.5557499999999997, 0.6095700000000042, 0.1552200000000039, -1.9480499999999976, -2.367689999999997, -4.215119999999998, -4.39101, -3.7022699999999995, -2.5989599999999977, -1.3053299999999983, -1.1653199999999972, -0.9047999999999974, -1.2862199999999975, -1.5978299999999976, -1.324829999999996, -1.113839999999998, -0.4009199999999984, -0.9742199999999965, -1.5061799999999972, -1.427399999999997, -0.4648799999999964, 0.5058299999999996, 0.2499900000000026, -0.7764899999999957, -0.10958999999999675, -0.4960799999999974, -0.2004599999999992, -1.738229999999997, -1.0401299999999967, -1.5720899999999973, -1.6867499999999975, -2.4413999999999976, -2.5377299999999967, -2.2701899999999977, -3.315389999999997, -3.562649999999997, -3.0068999999999977, -2.437109999999997, -2.7526199999999967, -2.1574799999999965, -1.8567899999999975, -2.411759999999997, -2.3446799999999968, -1.3451099999999963, -0.48749999999999627, -0.16574999999999784, 0.23517000000000143, -0.49256999999999795, -0.6945899999999967, -0.21956999999999605, -1.0136099999999966, -1.486289999999997, -1.9441499999999967, -1.5182699999999973, -1.3837199999999994, -0.19889999999999697, -0.7643999999999964, -1.0046399999999975, -0.7027799999999973, -0.38531999999999433, -1.6762199999999976, -1.4890199999999976, -1.732379999999997, -2.108339999999997, -2.6254799999999974, -2.268239999999997, -1.106819999999998, -1.8626399999999976], [0.0, 0.2577900000000031, -0.45278999999999625, 0.4344600000000045, -0.6867899999999927, -2.781869999999996, -2.849339999999996, -2.4698699999999967, -2.5934999999999944, -3.4596899999999957, -2.607539999999995, -1.9815899999999964, -1.0409099999999962, -0.4391399999999961, -0.8693099999999947, -0.4262699999999975, -0.6068399999999943, -0.26051999999999564, 0.9972300000000032, -0.6333599999999975, -1.2460499999999968, -1.5034499999999955, -1.4028299999999951, -0.38453999999999455, -0.8162699999999985, -0.9161099999999966, -2.1473399999999963, -3.041999999999996, -1.1399699999999935, 0.4746300000000052, -0.007409999999996142, -0.1743299999999981, -0.7121399999999967, -1.4765399999999955, -0.14819999999999567, -0.0015599999999968972, -1.256969999999998, -0.9593999999999969, -0.510509999999996, -0.5354699999999961, -1.0026899999999954, -1.496429999999996, -1.4117999999999955, -2.2772099999999957, -2.3918699999999964, -2.9269499999999953, -3.3707699999999963, -3.062669999999996, -2.8586999999999954, -2.381339999999996, -2.1629399999999963, -1.2257699999999945, -1.9761299999999957, -1.5900299999999958, -1.996019999999995, -2.4187799999999964, -2.9023799999999955, -2.0217599999999964, -0.31355999999999584, 0.33774000000000237, 0.1618500000000016, 0.13377000000000505, 0.43173000000000217, 0.8502000000000041, 0.33033000000000223, -0.8232899999999965, -1.8021899999999949, -2.092739999999995, -1.7709899999999974, -2.2346999999999957, -1.6259099999999942, -1.0155599999999958, -0.6563699999999972, -0.5311799999999969, -0.5222099999999918, 0.4520100000000009, -0.1115399999999922, -1.169219999999993, -1.4078999999999957, -0.6684599999999943, -1.5662399999999947, -1.4468999999999947], [0.0, 0.2745599999999994, 0.4048199999999997, 1.1442600000000005, 0.9749999999999989, 0.030419999999999725, -0.3084899999999998, -0.9742200000000016, -1.1419199999999994, -0.8587800000000008, -0.3084900000000004, 0.00273000000000001, 0.29093999999999887, 0.7378799999999995, 1.9968000000000001, 1.890719999999999, 2.2319699999999987, 0.9274199999999992, 0.7881899999999998, -0.24882000000000004, -0.3311099999999991, -0.07683000000000118, 0.27182999999999924, 1.3981500000000002, 0.8973899999999997, 0.4040400000000003, -1.0303799999999999, -1.57521, -0.4641000000000006, 1.5362099999999996, 1.0198499999999995, 1.4535299999999998, 1.45314, 2.1227700000000005, 1.9035900000000001, 2.51121, 1.6918199999999994, 1.4414399999999987, 1.0178999999999994, 2.0436000000000023, 1.600169999999999, 0.5756399999999998, 1.0050299999999994, 0.53313, 0.06278999999999996, -0.3576300000000002, -0.5803200000000006, -1.2936300000000003, -0.8326500000000006, 0.3350099999999997, 1.0728900000000001, 1.23591, 0.9648599999999996, 0.2261999999999998, 0.6891299999999994, 0.31277999999999967, 0.011700000000000044, -0.1392299999999992, 1.0331099999999998, 2.46831, 2.6149500000000003, 2.6777399999999982, 2.24367, 2.12277, 1.2078299999999995, 1.6715399999999998, 1.503449999999999, 0.4169099999999998, 0.29405999999999977, 1.2316199999999995, 1.0955100000000006, 1.7035199999999997, 2.0638800000000015, 1.2760799999999985, 0.49724999999999997, -0.018720000000000403, -0.09828000000000037, 0.1431299999999997, 0.10802999999999935, 0.7604999999999997, 1.614209999999999, 2.07012], [0.0, 0.7959899999999999, 0.23906999999999945, -0.9028499999999988, -0.3307199999999999, -1.0210199999999985, -2.4012300000000026, -2.89926, -3.3575099999999978, -3.1352100000000007, -1.7877600000000011, -1.630200000000001, -0.19695000000000107, -1.2062699999999975, -2.366520000000004, -1.774500000000003, -1.629809999999997, -1.1037000000000001, -1.0615799999999982, -1.0764000000000002, 0.3837600000000003, 0.2757299999999987, -0.9024600000000003, -1.564679999999998, -1.9644300000000003, -2.189459999999997, -2.321279999999998, -1.648920000000002, -0.21021000000000067, -0.01598999999999906, -1.0097100000000039, -1.1536199999999959, -0.5448300000000008, -0.3580200000000011, -0.880620000000002, -1.2507300000000001, -0.9488699999999997, -0.6910799999999979, -0.6606599999999945, -0.9387300000000007, -0.7983299999999975, -1.0471499999999982, -0.9239100000000013, -1.2472199999999998, -1.946099999999998, -2.130180000000001, -1.9554600000000046, -1.1286599999999998, -2.142660000000001, -2.6757899999999983, -0.893099999999998, -0.7226699999999993, -0.2538899999999993, -1.7378400000000045, -1.4188200000000017, -1.7121000000000002, -0.8517600000000007, -0.6247800000000014, -1.2589199999999996, -1.4359799999999987, -1.9800299999999995, -0.7667400000000024, -0.8400600000000014, 0.4009200000000006, 0.34943999999999886, -0.6852299999999996, -0.4340700000000013, -2.010449999999997, -2.659019999999998, -2.714010000000001, -2.040869999999999, -2.0747999999999998, -1.6766099999999982, -0.8349900000000006, -0.6512999999999993, -1.319759999999998, 0.20085000000000042, -1.3197599999999998, -0.5619900000000004, 0.024569999999999537, 0.2659800000000003, 0.46799999999999964], [0.0, 0.00117000000000278, 0.5436600000000031, 0.41301000000000077, -0.5810999999999993, -1.9227000000000007, -2.541629999999995, -3.2674199999999933, -2.9936399999999956, -2.689829999999991, -2.347019999999996, -1.269059999999997, -0.9005099999999988, -0.7967699999999951, -0.6255599999999948, -0.5003699999999949, -0.25154999999999195, -0.3096599999999956, -0.13142999999999727, -1.0639199999999942, -1.668029999999999, -0.692639999999999, -1.4905799999999916, -0.9699299999999909, -0.9406799999999951, -1.652429999999999, -2.9577599999999924, -3.6180299999999974, -2.136029999999989, -0.40481999999999374, -0.42665999999999915, -0.6278999999999968, -1.0459800000000001, -0.5561399999999912, -0.19070999999999483, -0.07877999999999563, -0.983189999999996, -1.0366199999999948, -0.3275999999999959, 0.3120000000000056, -0.4828199999999985, -1.004249999999991, -0.9757799999999994, -1.398150000000002, -1.9519499999999974, -1.7850299999999883, -1.780349999999995, -2.2058399999999905, -1.9827599999999999, -1.2203099999999951, 0.02652000000000232, 0.48087000000000124, 0.042120000000003266, -0.6450599999999982, -0.5229899999999938, -1.322489999999994, -1.6571099999999968, -0.5592599999999983, 0.13182000000000382, 1.2472200000000044, 1.3919100000000029, 0.5838300000000025, 0.03588000000000324, -0.10685999999999485, 0.08774999999999977, 0.04641000000000162, -0.8888099999999994, -1.9835399999999943, -2.6601899999999974, -1.5709199999999965, -1.4422200000000007, -1.0643099999999919, 0.015990000000003057, -0.18134999999999835, 0.4048200000000022, 0.10101000000000271, -0.3845400000000003, -0.974999999999997, -1.0409099999999887, 0.5417100000000037, 0.5241600000000024, -0.34553999999999796], [0.0, 1.130609999999999, 1.7507099999999998, 0.9305399999999997, 0.790920000000007, 0.30576000000000114, -0.21645000000000003, -0.8244599999999997, -1.708589999999997, -1.460159999999997, -1.4582099999999962, -0.8969999999999994, 0.739830000000004, 1.7358900000000075, 1.173510000000002, 0.9305399999999997, 1.4137499999999958, 2.186729999999999, 1.690260000000003, 1.3755300000000021, 1.067820000000002, 1.252289999999995, 0.5027099999999987, -0.6083999999999974, -0.42900000000000205, 1.125539999999999, 0.13805999999999674, -0.9449699999999965, -1.1165699999999967, 0.045240000000004166, 1.1571299999999995, 1.070160000000003, 0.3424199999999997, 0.7250100000000019, -0.049920000000001075, -0.2519399999999985, 0.4286100000000008, 0.6536399999999976, 0.7109700000000032, 1.0182900000000021, 0.9075299999999977, 0.9851399999999977, 0.9695400000000012, 0.3658200000000056, -1.02765, 0.4270499999999995, 0.10881000000000363, 0.28781999999999996, 0.4293900000000006, -0.35645999999999933, -0.40949999999999775, 1.0881000000000034, 1.1107199999999988, 0.7101900000000025, 0.1840800000000007, 0.33306000000000235, 0.860730000000002, 1.3306799999999992, 0.739440000000001, 1.0639199999999986, 0.8501999999999974, 0.6871800000000006, 0.589679999999996, 0.6368700000000018, 0.579150000000002, 0.30263999999999847, -0.09204000000000079, -0.2679299999999998, -1.130999999999995, -1.3786499999999995, -0.8322600000000007, 0.022619999999998974, 0.5771999999999986, 1.3712399999999967, 1.1657100000000025, 2.231580000000001, 1.776059999999993, 1.4972100000000097, 0.8100300000000029, 0.8217300000000023, 1.1290499999999986, 0.8349899999999995], [0.0, 0.7741499999999961, 1.047539999999998, 0.7234499999999984, -0.08151000000000153, -0.8599500000000031, -1.690650000000001, -3.2779500000000037, -2.946840000000002, -2.2339200000000017, -2.254589999999998, -1.3170300000000008, -0.4446000000000039, -0.09789000000000314, -0.7569900000000036, -0.806519999999999, -0.34476000000000173, 0.03548999999999869, 0.38219999999999743, 0.449669999999998, -0.028080000000002325, -1.2444900000000043, -1.4433900000000062, -2.2971000000000017, -1.3739700000000008, -0.8490300000000022, -0.7858500000000044, -2.2581000000000055, -2.2588800000000018, -0.9102600000000018, -1.3486200000000061, -1.8833100000000047, -2.1761999999999975, -1.1602500000000018, -0.596310000000003, -0.2184000000000017, 0.0261299999999991, -0.3381300000000005, -0.668850000000003, -0.0916500000000009, 0.15404999999999802, -0.2546700000000026, -1.3591500000000019, -1.581450000000003, -1.2749100000000007, -0.6185400000000025, -0.4836000000000027, -0.5900699999999994, -1.3217100000000008, -1.2035400000000034, -1.2994800000000022, -0.1224600000000029, 0.1930499999999984, -0.7062900000000027, -0.7499700000000038, -0.5175300000000025, -0.036660000000003024, -0.06123000000000012, -0.031980000000005226, -0.12480000000000224, 0.666899999999998, 0.9285899999999976, -0.10686000000000195, -0.2507700000000015, -0.20552999999999955, -0.1938300000000015, -0.8357700000000028, -1.6887000000000034, -1.988609999999999, -2.0326800000000103, -1.6719300000000006, -1.838850000000003, -1.1118900000000034, -0.5604300000000011, -0.3463200000000035, 0.10802999999999874, -0.10998000000000285, -0.8065199999999999, -1.5627300000000037, -1.478100000000004, 0.39038999999999535, 0.6590999999999985], [0.0, 0.9180600000000008, 1.0299900000000006, -0.14975999999999912, 1.0085400000000002, 0.7995000000000009, 0.19422000000000053, 0.6321900000000008, -1.0202399999999994, -0.5615999999999987, -0.7406099999999998, 0.32370000000000076, 1.1937900000000008, 1.3302900000000004, 1.0186800000000005, 0.5643299999999998, 2.194530000000001, 2.0319000000000025, 0.8806200000000006, 0.5374200000000011, 0.40326000000000073, -0.1103699999999988, 0.19578000000000026, -0.5998199999999996, -0.24647999999999928, -0.7292999999999993, -1.2569699999999995, -1.1395800000000003, -0.9348300000000005, -0.27572999999999914, -0.20357999999999918, -0.48983999999999905, -0.62049, 0.5346900000000013, 0.2203500000000004, -0.7222799999999988, -0.6271199999999989, -0.4040399999999994, 0.5093399999999997, 0.8131500000000004, 1.6103099999999995, 1.935179999999999, 0.5171400000000007, 0.6302400000000007, 0.9976199999999984, 0.3311100000000007, 0.987480000000001, -0.3712799999999994, -0.3381299999999997, -0.21449999999999902, 0.12480000000000074, 0.6793800000000009, -0.7702499999999997, -0.550289999999997, -1.5132000000000003, -1.7869799999999996, -0.034709999999999006, 0.63375, 0.31589999999999985, -0.5900699999999992, 0.07020000000000026, -0.04523999999999895, 0.38103000000000076, 0.78273, 0.8899800000000004, 0.5097300000000005, 0.4882800000000007, -0.33890999999999905, -1.8482099999999995, -1.593540000000001, -1.7904899999999975, -1.4305199999999996, -1.725359999999999, 0.5120699999999997, 0.5604300000000009, 0.26832000000000045, -0.09905999999999882, -0.5136299999999995, -0.918449999999999, -0.7066799999999998, -0.27416999999999964, -0.29678999999999933], [0.0, 0.44498999999999866, -0.21372000000000035, -0.6864000000000011, -0.7281300000000006, -1.1469900000000002, -2.113800000000003, -2.0248800000000013, -1.1103300000000007, -2.57439, -2.813460000000001, -2.4168299999999996, -0.7620600000000004, -0.5760300000000002, 0.03744000000000014, -0.5296200000000006, 0.49178999999999884, 0.7086299999999988, 0.44693999999999834, 1.1703900000000005, -0.21177000000000057, -1.1579100000000009, -2.838420000000003, -2.9643900000000016, -2.7729000000000017, -1.7986800000000007, -1.9078800000000011, -2.9452799999999986, -2.4597300000000004, -1.7522700000000002, -1.2296700000000018, -1.8337800000000015, -2.4675300000000027, -2.7120599999999992, -2.1270599999999997, -1.0658700000000012, 0.3942899999999987, 0.13376999999999972, -0.19539000000000056, 0.25115999999999916, 0.4734599999999989, -0.27534000000000075, -0.7378800000000004, -0.7893600000000002, -1.688310000000001, -0.8490300000000008, -1.1692200000000006, -1.1208600000000009, -1.83612, -1.6270800000000007, -1.1466000000000003, -0.5904600000000007, -0.8026200000000014, -2.2499100000000016, -2.1738600000000012, -1.389959999999999, -0.73359, -0.8486400000000006, -0.8775000000000008, -0.6961500000000003, 0.7792199999999991, 0.8408400000000005, 0.35021999999999953, 0.045629999999999726, -0.4352400000000004, -1.031940000000001, -2.2503, -3.110249999999998, -3.38208, -3.3824699999999996, -3.0490200000000023, -2.3091900000000005, -1.8918900000000005, -0.9750000000000004, -0.5023200000000002, -0.2039700000000012, -0.48594000000000087, -0.64311, -1.241369999999999, -0.6548099999999998, -0.046410000000000395, 0.09437999999999958], [0.0, 0.600210000000001, 0.11270999999999898, -0.1251900000000008, 0.06435000000000013, -0.6161999999999987, -0.24608999999999925, -0.2472599999999998, -0.13454999999999906, 0.03276000000000279, -0.4687799999999984, -0.10685999999999929, 0.3724500000000006, 0.5557500000000017, 0.7289100000000011, 0.04407000000000094, 1.0190700000000024, 1.967550000000001, 2.2222200000000014, 2.1910200000000013, 0.872820000000001, 0.6871799999999988, -1.2589199999999985, -1.986660000000001, -2.3438999999999974, -2.168789999999999, -2.2643399999999976, -2.6968500000000053, -1.6329299999999995, -0.17198999999999875, -0.969930000000002, -1.1731199999999964, -1.238640000000002, -0.24335999999999824, -0.4906200000000003, -0.30965999999999916, -0.0729299999999995, -0.27573000000000025, -0.21801000000000004, 0.04913999999999952, 0.4808700000000019, 1.36929, 1.0155600000000016, 1.3887900000000013, 0.5007600000000005, 0.12908999999999926, 0.38922000000000057, -0.10451999999999817, 0.15873000000000115, 0.005459999999999354, 0.5857800000000004, 0.7757099999999999, 0.2301000000000002, -0.16223999999999927, -0.45317999999999925, 0.01638000000000117, 0.9211800000000017, 0.7394399999999999, -0.0093600000000027, 0.5966999999999998, 0.4040400000000004, 0.7117500000000008, 0.1337700000000006, 0.4032600000000002, 0.26247000000000087, -0.4898399999999965, -1.1368499999999977, -1.4258400000000004, -1.7167800000000017, -0.7963799999999974, -0.25349999999999895, -0.4406999999999992, -0.2995199999999989, 0.2823600000000013, 0.6286800000000012, 0.7503599999999997, 0.6723600000000012, 0.2917200000000022, 0.12675000000000303, 0.2281500000000043, 0.44889000000000023, 1.075620000000001], [0.0, 0.3825900000000009, 0.05499000000000187, -0.5736899999999998, -0.6044999999999965, -0.9792899999999991, -0.8529299999999991, -0.18095999999999823, -0.809640000000001, -1.2390299999999999, -1.6192800000000014, -1.3630499999999988, -0.06122999999999923, 1.4640600000000021, 1.2222600000000012, -0.12089999999999801, 0.7300800000000027, 1.229280000000002, 1.0869300000000015, 1.6247400000000014, 1.5330900000000016, -0.14429999999999854, -1.713269999999999, -2.12472, -2.762369999999997, -1.5026699999999986, -1.2940199999999964, -1.694159999999996, -1.707030000000003, -1.1567399999999977, -1.8400199999999993, -1.6851900000000024, -1.555710000000001, -1.069769999999999, 0.14586000000000254, 0.5732999999999997, 0.54366, -0.3545100000000001, -0.23360999999999854, 0.6403800000000024, 0.7289100000000012, 1.2858300000000014, 0.7979400000000013, 0.07682999999999973, 0.29172000000000264, -0.16496999999999606, 0.35451000000000343, -0.2460899999999977, -1.1438699999999977, -0.9200099999999989, -0.04835999999999907, 0.3689400000000027, 0.499980000000001, -0.4368000000000001, -0.5678399999999992, -0.3229199999999961, 0.49686000000000297, 1.064700000000001, 0.9395100000000028, 1.3848900000000024, 1.5912000000000013, 1.883310000000002, 0.740610000000003, 1.1228100000000012, 0.30537000000000125, 0.44109000000000176, -0.10607999999999906, -0.5452199999999967, -0.4418699999999991, -0.8763299999999983, 0.04290000000000127, -0.16925999999999886, -0.35138999999999965, 0.2726100000000018, 0.4863300000000006, 0.1844699999999999, 0.5003700000000035, 0.6169800000000014, 0.37361999999999984, 0.6665100000000033, 0.9718800000000012, 1.2616500000000015], [0.0, -0.19382999999999992, 1.0627500000000007, -0.22035000000000002, -0.8611200000000012, -1.0974600000000003, -2.291250000000002, -2.065049999999999, -2.046719999999999, -0.7043400000000002, -0.13026000000000046, 0.52455, -0.04601999999999984, -1.4410500000000017, -1.5767699999999996, -0.5463899999999999, 0.36036, 1.149719999999998, 1.6625699999999966, 2.15163, 0.48126000000000013, -0.5616, -0.9496500000000001, -2.0478899999999998, -2.5014600000000002, -2.9347500000000024, -3.3586800000000006, -2.7670500000000007, -1.7140500000000023, -1.1442599999999987, -1.223039999999999, -1.1286599999999998, -0.7234499999999999, -0.5518500000000003, -0.17511, 0.16731000000000035, -0.6080099999999997, -1.4527500000000009, -1.3260000000000003, 0.009359999999998814, -0.24063000000000004, 0.22932000000000052, 0.3966299999999996, 0.6161999999999999, -0.017549999999999788, 0.3724499999999993, 0.6945899999999985, 0.1708200000000013, 0.4422600000000011, 0.7055099999999995, -0.09164999999999943, 0.09983999999999943, -0.08852999999999941, -0.4644899999999996, -0.7441200000000003, -0.08111999999999953, 0.5553600000000003, 0.7924799999999994, 0.26441999999999966, -0.07839000000000024, -0.15950999999999999, -0.18135000000000007, -0.17784000000000016, -0.6267299999999997, -1.3911300000000002, -1.46835, -1.48122, -0.59397, -0.3100500000000002, -0.8685300000000016, -1.0143900000000001, -0.2737800000000003, -0.86073, -1.1060400000000008, -0.35606999999999983, 0.28430999999999995, -0.4130100000000003, -0.44693999999999956, -0.8509799999999996, -0.5101200000000001, -0.3295500000000001, -1.2132900000000002], [0.0, -0.14352000000000198, 0.049529999999999075, -1.2546300000000006, -2.2740900000000006, -2.7428699999999986, -2.891460000000001, -2.2877400000000008, -1.8837000000000002, -2.04204, -1.39854, -1.0015199999999993, -0.36503999999999936, -1.0116599999999998, -0.6661199999999997, -0.03353999999999935, -0.1563899999999997, 0.6988799999999994, 1.0966800000000005, 1.2944099999999983, 1.0576799999999982, -0.14039999999999997, -1.9624799999999993, -3.004949999999999, -3.5197500000000006, -3.0361500000000006, -2.694900000000002, -2.8380300000000007, -3.0029999999999983, -2.0291700000000006, -2.160990000000001, -2.345069999999999, -2.0728499999999994, -1.5810600000000008, -1.5213899999999996, -0.8595600000000004, -0.6938099999999993, -1.083419999999999, -1.3275600000000007, -0.7690799999999992, 0.36231000000000024, 1.2156300000000018, 0.5066099999999986, -0.6126899999999995, -1.508909999999998, -1.6138199999999996, -0.5920199999999995, -1.34394, -1.53192, -1.4792699999999999, -0.9746100000000001, -0.18212999999999868, -0.2772899999999995, -1.0448099999999998, -1.4940899999999995, -1.55415, 0.16380000000000028, -0.20084999999999964, -0.9590099999999998, -0.18914999999999937, 0.05732999999999999, -0.85878, -1.0186799999999996, -0.6259500000000002, -0.8599499999999994, -1.1462099999999995, -1.5693600000000005, -2.1364200000000015, -1.9589699999999999, -1.53036, -0.8579999999999997, -0.2531100000000005, -0.6142500000000004, -0.8182199999999993, -0.3314999999999997, 0.3077099999999987, -0.32408999999999955, 0.0023399999999991206, -0.6466200000000002, -0.3182400000000002, -0.3092699999999997, -0.29951999999999945], [0.0, 1.0845900000000022, 1.3934699999999989, -0.0074099999999992505, -0.8728199999999968, -1.5911999999999975, -1.5444000000000013, -1.7854199999999998, -1.3677300000000012, 0.07644000000000162, 0.9605699999999961, 1.2343499999999965, 1.2062699999999982, 0.05381999999999909, -0.7955999999999999, -0.48437999999999803, 0.13220999999999794, 1.865759999999998, 2.5463099999999947, 3.3356700000000004, 2.419559999999991, 1.989390000000002, 1.658279999999995, -0.11582999999999988, -1.3158599999999976, -1.44651, -2.2502999999999984, -2.488589999999999, -1.2932399999999995, -1.8162300000000013, -1.487070000000001, -1.938299999999999, -1.8614699999999997, -0.6002100000000015, -0.045239999999999725, 0.1478099999999989, 0.15482999999999603, -0.6973199999999986, -0.3779099999999964, 0.48789000000000105, 0.6396000000000024, 1.1711699999999938, 1.591199999999998, 1.5174899999999987, 0.512069999999996, 0.7027800000000033, 0.6825000000000019, 0.14352000000000142, -0.08267999999999365, 1.097850000000001, 1.2873900000000038, 1.3958100000000044, 1.002690000000011, 0.8400599999999994, 1.1247600000000002, 1.3599300000000003, 1.3661700000000039, 1.2577499999999988, -0.45551999999999815, -0.3112199999999996, 0.1641900000000014, 0.2640299999999982, 0.19655999999999985, -0.20591999999999988, -0.9613499999999982, -1.6196699999999993, -1.7136599999999986, -1.0471500000000025, 0.0573300000000021, -0.38453999999999766, 0.1844699999999957, -0.08892000000000255, -0.35763000000000256, 0.12284999999999702, 1.2690599999999996, 1.087710000000004, 0.7398299999999987, 0.6485700000000012, 0.3938999999999995, 0.2652000000000019, 0.6458400000000024, -1.0280400000000012], [0.0, 0.4668300000000004, 0.8954399999999995, 0.6271199999999991, -0.9262499999999998, -0.9418500000000001, -1.46367, -0.662610000000001, -0.7324200000000003, -0.6345300000000001, -0.08229000000000025, -0.9597899999999999, -0.4274399999999995, -0.22464, -0.4485000000000002, -0.5432699999999998, -0.23516999999999982, 0.965250000000002, 1.0689900000000003, 1.9250399999999983, 2.700359999999998, 2.199990000000001, 0.43641000000000063, -0.3334500000000003, -0.7932600000000002, -1.429739999999999, -1.8567899999999997, -2.009279999999999, -1.5436199999999998, -1.8524999999999991, -1.7191199999999998, -1.5233400000000006, -1.0397399999999992, -0.7406100000000001, 0.08775000000000044, 0.09554999999999958, 0.6856199999999996, 0.34826999999999986, 0.7725899999999993, 1.238250000000002, 2.428139999999996, 2.5638600000000014, 2.201550000000001, 1.572090000000002, 1.0884899999999993, 0.9051899999999992, 1.3611000000000009, -0.47268, -0.13571999999999973, -0.35295000000000076, 0.42354000000000014, 1.344329999999999, 1.7031299999999998, 1.49682, 1.5693600000000005, 1.7483699999999982, 0.7562099999999999, 0.08736000000000033, 0.05304000000000186, 0.2710499999999998, 0.7558200000000016, 0.2020200000000002, -0.6243900000000003, -0.00662999999999947, -0.19265999999999983, -0.8381099999999995, -1.6808999999999998, -1.8778499999999996, -0.78858, 0.5366399999999986, 0.08306999999999953, 0.16770000000000007, -0.19889999999999952, -0.1532699999999999, 1.2187499999999996, 1.7280900000000008, 1.7417400000000014, 1.3065000000000007, 0.7398300000000008, 0.33462000000000036, 0.07644000000000006, -0.08931000000000011], [0.0, -0.35217000000000087, 0.0920399999999999, -0.423150000000002, -0.7417799999999991, -1.0841999999999998, -1.677780000000001, -1.427790000000001, -0.2636400000000012, 1.3989300000000005, 1.3525199999999984, 1.205099999999999, 0.31082999999999816, -0.0479699999999994, -0.8455200000000003, 0.5108999999999988, 1.7550000000000003, 2.703480000000002, 2.2307999999999995, 2.19492, 2.0685600000000015, 1.2897299999999983, -0.07878000000000096, -1.1934000000000007, -2.1832199999999995, -2.8941899999999996, -3.600480000000002, -2.7939600000000007, -2.2549800000000007, -1.7577300000000007, -1.8060900000000015, -1.307280000000002, -0.29094000000000075, -0.7558200000000006, -0.26169000000000164, 0.21917999999999993, 0.21839999999999882, 0.38180999999999976, 0.912599999999999, 0.7909199999999994, 1.77645, 2.090400000000001, 2.045939999999999, 1.8914999999999975, 0.536249999999999, 1.554149999999999, 0.9648599999999994, 0.035879999999999024, 0.5811000000000013, 1.1996400000000014, 0.6407699999999994, 1.0026900000000003, 1.2526799999999993, 1.7686500000000032, 1.5872999999999968, 1.5607799999999994, 1.3252200000000012, 1.1095499999999996, 0.4418699999999989, -0.3100500000000008, -0.8907600000000004, -1.122030000000001, -1.1224200000000004, -0.6298500000000004, -0.9621300000000013, -0.20163000000000064, 0.2757299999999998, -0.015990000000001947, -0.7218900000000007, 0.6399899999999985, 0.145859999999999, -0.0417299999999996, -0.22659000000000096, 0.9051900000000006, 1.2546299999999997, 0.7452899999999998, 0.21839999999999882, -0.5046600000000017, -0.6267300000000018, -0.7152600000000007, -1.2581400000000011, -0.28470000000000006], [0.0, 0.34358999999999895, -0.0986700000000007, -0.6770399999999994, -0.0039000000000004587, -0.1840799999999998, -1.284269999999998, -0.8622899999999998, -1.0569000000000015, -0.6466200000000035, 0.8092499999999992, 0.5393699999999989, -0.19734000000000185, -1.226159999999998, -0.5939700000000006, -0.6949799999999997, 0.599429999999999, 1.2503399999999991, 2.4441299999999995, 2.1305699999999996, 2.243669999999999, 1.6867499999999989, 0.477359999999998, -0.4188600000000011, -2.126280000000002, -1.7865899999999977, -2.343120000000001, -1.7507099999999998, -1.3591500000000005, -0.678990000000002, -1.0303800000000023, -1.1118900000000003, -1.3373100000000044, -1.3747500000000024, -0.7218900000000019, 0.5916299999999988, 0.690299999999999, 0.3724499999999997, 0.2921099999999983, 0.6216599999999984, 1.2421499999999988, 1.7475899999999993, 1.338089999999999, 0.6622199999999985, 1.1590799999999997, 1.5479099999999995, 0.930929999999999, 0.6076199999999987, 0.620879999999999, 0.8544899999999994, 0.6243899999999998, 0.3135599999999996, 0.18369000000000013, 0.9418500000000003, 1.8747299999999998, 0.7253999999999986, 0.6723600000000004, -0.24609000000000258, -0.18213000000000035, -0.18719999999999826, 0.21527999999999814, 0.6602699999999996, 0.6477899999999992, 0.41573999999999844, 0.32135999999999987, -0.9477000000000011, -1.163370000000001, -1.0136100000000012, -1.0799100000000004, -0.4851600000000029, -0.6552000000000029, -0.4976400000000001, -0.4036500000000005, -0.4995900000000013, 0.9441899999999994, 0.9668100000000001, 1.1181299999999992, -0.18915000000000082, -0.8135399999999997, -0.41886000000000134, -0.6665100000000037, -1.2620400000000025], [0.0, -0.023399999999997867, 0.49530000000000296, 0.2714400000000037, 0.4449899999999989, 0.8365499999999964, 0.0826800000000043, 1.1157900000000014, 0.7265700000000033, 0.15405000000000424, 0.759719999999998, 1.014389999999997, 1.1965199999999987, 0.6930300000000038, -0.4984199999999932, -0.02807999999999833, 1.698839999999997, 0.9477000000000011, 0.5456099999999982, 0.23009999999999664, 0.6505199999999993, 0.682109999999998, 0.19266000000000272, -0.02925000000000022, 0.048749999999997407, 0.3010799999999998, 0.2098199999999979, -0.3233099999999993, -0.6220499999999998, 0.17784000000000422, -0.6290699999999987, 0.3580199999999989, 0.6122999999999958, -0.72384, -0.5885099999999985, -0.2804099999999963, -0.4282200000000014, -0.28080000000000016, -1.0198499999999946, -0.12246000000000024, 0.0389999999999997, 0.5342999999999982, -0.31901999999999564, -0.4102799999999993, 0.6084000000000005, 1.1388000000000007, 0.5421000000000005, 0.13494000000000028, 0.0936000000000039, 0.08814000000000455, 0.6899099999999958, 0.5850000000000026, 0.24609000000000059, -0.0990599999999926, 0.3646500000000046, -0.15288000000000146, -0.030420000000002112, 0.1279199999999987, 0.08228999999999953, 0.3541199999999982, -0.629070000000004, 0.20084999999999464, 0.2269799999999993, 0.8119799999999984, 0.7277399999999998, 0.9656400000000076, 1.4730300000000023, 0.8786700000000032, 0.4668299999999963, 0.5557500000000042, 0.98709000000001, 1.2522899999999995, 1.3322399999999908, 1.0565099999999985, 1.5837900000000067, 1.664519999999997, 1.454699999999998, 0.25232999999999883, -0.2648100000000033, 0.11349000000000675, 0.7172100000000006, 1.1953499999999986], [0.0, 1.200419999999999, 1.5167100000000038, 1.092389999999995, 1.4636699999999974, 0.8435699999999966, -0.5616000000000017, -0.47540999999999745, -0.152100000000003, 1.0997999999999952, 0.38882999999999823, -0.08424000000000298, -0.09204000000000434, 0.07214999999999838, -0.17472000000000154, 0.5506799999999994, 0.09281999999999924, 1.0315499999999962, 1.8996899999999957, 1.6672499999999988, 2.7771899999999925, 2.862599999999992, 2.2077899999999935, 0.4200300000000001, -1.0826399999999996, -2.071290000000004, -2.0584200000000035, -1.1973000000000007, -0.7768800000000051, -0.6392099999999994, -0.6349199999999997, -0.29367000000000454, -0.7511400000000021, -0.8197800000000055, 0.4067699999999932, 0.9976199999999937, 1.3228799999999947, 1.446899999999999, 2.0619300000000016, 2.0638799999999997, 0.9020699999999962, 0.6610499999999955, 0.8330399999999991, 1.0775699999999957, 1.5896400000000006, 2.5622999999999956, 1.2975299999999916, 1.3345799999999985, 1.2218699999999951, 1.294409999999996, 1.0740599999999945, 1.6660799999999978, 2.8891199999999997, 2.1695699999999998, 2.1652799999999988, 1.939080000000002, 1.12086, 1.6910399999999988, 1.2534599999999947, 1.5225599999999955, 1.4195999999999942, 1.0085399999999995, 0.027299999999998104, 0.14741999999999722, -0.3252600000000032, -1.161420000000001, -0.9590100000000032, -0.7410000000000045, -0.6318000000000046, -0.33540000000000036, -0.19226999999999927, -0.1431300000000051, 0.6598799999999954, 0.5931899999999986, 0.9734399999999979, 1.8427499999999992, 1.4695200000000006, -0.00702000000000691, -0.08073000000000352, 0.41378999999999566, 0.9383399999999971, 1.1200800000000029], [0.0, 0.3693300000000015, 0.23361000000000098, -0.5296200000000004, 0.19695000000000107, -0.29912999999999834, -0.5756399999999977, -0.8833499999999991, 0.14196000000000142, 0.957059999999998, 0.8470800000000014, 0.7070699999999999, 0.6298500000000025, 0.08384999999999976, 0.05031000000000119, 0.4251000000000018, 0.926640000000003, 1.8392400000000015, 2.4784500000000036, 2.2584900000000006, 2.0720700000000036, 0.16497000000000162, -0.468389999999999, -1.7202899999999985, -1.7078099999999983, -1.2327899999999983, -0.6064499999999979, -0.1524899999999989, 0.04836000000000151, 0.028080000000002325, 0.20202000000000164, -1.132169999999999, -2.255369999999999, -2.150069999999999, -0.7253999999999994, 0.6138600000000007, 0.9574500000000015, 1.303770000000005, 1.1738999999999997, 1.3572000000000015, 1.0818600000000025, 1.8466499999999981, 1.661400000000004, 0.853320000000001, 1.3899600000000025, 1.2889499999999994, 1.5042300000000042, 0.7140900000000001, 0.1532700000000038, 1.1102230246251565e-15, 0.4683900000000012, -0.40325999999999773, 0.5475600000000025, 1.405170000000001, 1.5791100000000031, 1.5147600000000003, 0.8888100000000043, 0.906750000000005, 0.48672000000000404, 0.2293200000000022, 0.9016800000000043, 0.4906200000000016, -0.2651999999999999, -0.391559999999999, -1.0362299999999975, -0.041339999999997934, 0.7109700000000019, 0.04524000000000217, -0.5537999999999981, -0.45512999999999826, 0.16029000000000093, 0.9664200000000034, 1.573260000000003, 1.9515600000000042, 0.8954400000000007, 0.7183800000000029, 0.3537300000000001, -0.8997299999999985, -1.1157899999999987, -0.8392799999999988, -1.0093199999999998, -0.9590099999999968], [0.0, 0.3135600000000096, 0.641940000000008, -0.5085599999999939, -0.8833499999999956, -0.9543299999999917, -1.1286599999999956, -1.8567899999999913, -0.9863099999999951, -0.046019999999989736, 0.9547200000000071, 0.35919000000000967, -0.357629999999995, -0.12752999999999837, -0.33344999999999736, 0.7527000000000061, 0.238290000000009, 0.023790000000000866, 1.194180000000006, 1.0155600000000078, 1.6477500000000043, 0.5296200000000058, 0.43446000000000495, 0.40599000000000096, -1.242149999999997, -1.9176299999999955, -1.7830799999999893, -1.6461899999999918, -1.0249199999999954, -1.6656900000000006, -1.3337999999999983, -0.8981699999999915, -1.1563499999999944, -0.9059699999999937, -0.3884399999999957, 0.48399000000000836, -0.0698099999999986, 0.8677500000000067, 1.740570000000003, 1.5974400000000064, 0.6123000000000092, 0.7413900000000058, 0.014040000000009378, 0.4851599999999996, 0.5865600000000049, 1.0288200000000067, 1.596660000000004, 1.2222600000000061, 0.33735000000000426, 0.5393699999999999, 0.6887400000000055, 0.9917700000000047, 1.1583000000000045, 0.9835800000000039, 1.724970000000004, 1.3728000000000038, 0.4336800000000034, 0.11856000000000844, 0.6536400000000064, 1.7292600000000071, 1.856790000000006, 1.3911300000000022, 0.6360900000000038, -0.035879999999997914, -0.9157199999999959, -0.9593999999999943, -0.590459999999994, -0.699269999999995, -0.7515299999999971, -0.5304000000000002, -0.9164999999999983, -0.6442799999999984, 0.22269000000000982, 0.4605900000000025, 0.6871800000000072, 0.16770000000000618, 0.26208000000000453, -0.4172999999999947, -0.8833499999999939, -0.3350099999999969, -0.2593499999999951, -0.29444999999999233], [0.0, -0.20358000000000454, 0.04328999999999583, -0.38220000000000676, -0.7429500000000049, -0.989430000000004, -1.878630000000005, -2.476110000000003, -1.6419000000000028, -0.9562800000000067, -0.3740100000000042, -0.34086000000000816, -1.7667000000000055, -1.3458900000000034, -0.6731400000000054, 0.2581799999999972, 0.7885800000000014, 0.7382699999999938, 1.59743999999999, 2.2421099999999985, 1.266719999999995, 0.07643999999999407, -0.6286800000000059, -1.0140000000000056, -1.0038600000000057, -0.6711900000000042, -1.1934000000000053, -1.3096200000000051, -0.9457500000000074, -1.3603200000000055, -1.627080000000003, -2.070510000000003, -1.9176300000000033, -2.8680600000000043, -0.9519900000000043, -0.9917700000000043, 0.42509999999999515, 0.9773399999999972, 1.219920000000001, 0.7519199999999957, 0.498419999999995, 0.13064999999999882, -0.6704100000000035, -0.9675900000000071, -0.6189300000000029, 0.11465999999999354, 1.0350599999999996, 0.27026999999999735, 0.13922999999999064, -0.5444400000000047, -0.9137700000000044, -1.605630000000005, -0.5584800000000052, -0.2484300000000026, -0.2597400000000034, -0.24414000000000335, -0.25077000000000416, -0.7000500000000072, 0.10412999999999695, -0.4683900000000012, -0.4223700000000057, -0.04290000000000216, -0.5768100000000032, -1.3380900000000029, -1.2542400000000047, -1.161030000000003, -0.7991100000000029, -0.7117500000000039, -0.5928000000000067, -0.6111300000000042, 0.3190199999999992, -1.1988600000000051, -1.1005800000000043, -0.5436600000000054, -0.8037900000000064, -0.6357000000000013, -1.1649300000000062, -1.1976900000000064, -1.7487600000000045, -0.6981000000000046, -0.9445800000000042, -1.0299900000000002], [0.0, 0.9180599999999983, 1.4940899999999986, 1.032329999999999, -0.02534999999999954, -0.22542000000000195, -1.0085399999999993, -1.3544699999999998, -1.660230000000001, -0.7835099999999984, -0.9929399999999988, -0.06201000000000079, -0.4715099999999999, -0.9180600000000021, -1.3162500000000004, -0.9406800000000006, -1.5022799999999998, -0.8482500000000006, 0.8065200000000003, 0.38805000000000067, 0.9278099999999956, 1.2132899999999989, 0.0943800000000019, -0.1887600000000007, -1.1641500000000005, -1.4898000000000005, -1.479270000000001, -1.9386900000000002, -1.68831, -2.2354800000000004, -1.4192099999999999, -0.44615999999999856, -0.8470799999999983, -0.7515299999999991, -0.8681400000000006, -1.255410000000002, -0.5304000000000002, 0.7877999999999972, 1.0713300000000001, 0.9449700000000023, -1.7763568394002505e-15, -0.8700899999999991, -1.3525200000000024, -1.038959999999999, -0.26871000000000045, -0.4239300000000017, -0.44303999999999855, -0.5666699999999989, -0.600209999999999, 0.43874999999999975, 0.6224399999999997, 1.654380000000002, 1.5287999999999982, 0.7655699999999985, 0.669630000000002, 0.24375000000000213, -0.7448999999999995, 0.04718999999999918, -0.25466999999999906, -0.4758000000000009, 1.2320099999999994, 1.1224200000000004, 1.2019800000000043, -0.4055999999999975, -1.4449499999999997, -0.7527000000000001, -0.1150500000000001, 0.0955499999999998, -0.3186299999999993, -0.32877000000000045, -0.4707300000000001, -1.5050100000000002, -0.13103999999999827, 0.45552000000000037, -0.6115200000000003, -1.3661699999999992, -1.3813799999999992, -0.7441200000000006, -0.8915400000000016, -0.9820200000000001, -1.2546300000000001, -0.7402200000000005], [0.0, 0.2453099999999946, 0.12674999999999947, -1.169220000000001, -1.2975299999999992, -1.4472900000000033, -1.4628900000000078, -1.6516500000000063, -1.0927800000000154, -0.7527000000000097, -1.0596300000000127, -1.2920700000000034, -0.6345300000000034, -1.0604100000000116, -0.5756400000000035, -0.18954000000000804, 0.12830999999999904, 0.4754100000000072, 0.7164299999999972, 0.5885099999999959, 0.6821099999999962, 0.3938999999999879, -0.012870000000003046, -0.6349200000000064, -0.885690000000011, -1.1660999999999992, -1.4199900000000092, -0.8704800000000112, -1.0990200000000083, -2.1914100000000003, -1.6656900000000077, -2.6016900000000076, -2.941380000000005, -2.964780000000008, -1.5225600000000021, -0.22347000000000605, 0.31278000000000183, 0.8221199999999982, 0.3353999999999946, 0.9437999999999906, 0.4609799999999886, -0.5218200000000035, -0.8275800000000082, -1.0830300000000017, -0.7113600000000062, -0.303810000000011, 0.9044099999999986, 0.4637099999999954, -1.0923900000000035, -1.226549999999996, -1.2729600000000083, -1.3474500000000091, -1.7791800000000073, -0.38025000000001263, -0.8427900000000097, -0.3416400000000017, 0.3346199999999886, -0.2913300000000092, 0.007799999999988927, 0.10998000000000019, -0.554970000000008, -0.652470000000001, -0.9340500000000045, -1.6009500000000045, -1.6871400000000003, -0.6653400000000147, -0.3123900000000024, -0.42510000000000936, -1.0639199999999969, -1.2433200000000042, -1.7374500000000053, -1.516710000000006, -1.3497900000000058, -0.3385200000000026, -0.477360000000008, -0.09710999999999181, -1.371240000000011, -1.293630000000003, -2.196870000000004, -1.7101500000000023, -1.9293300000000073, -2.3060700000000045], [0.0, -0.02496000000000098, -0.266369999999996, -0.18212999999999813, -0.6996600000000013, -1.0054200000000018, -1.2924600000000006, -1.2916799999999995, -2.113410000000002, -1.2429299999999968, -0.7862399999999985, -0.6060599999999972, -1.2858299999999963, -1.1719499999999998, -0.9710999999999994, -1.0100999999999996, -0.7417800000000001, 0.18954000000000126, 0.5198700000000019, 0.08619000000000199, 0.9675900000000021, 0.02301000000000064, -0.7140899999999994, -1.7717699999999992, -1.8006300000000008, -1.4203799999999984, -1.5264600000000002, -1.5233399999999953, -1.7475899999999993, -1.8388499999999977, -2.3458499999999973, -2.805270000000001, -2.495609999999996, -2.054519999999999, -0.982019999999995, -0.3853199999999972, 0.1244100000000008, 0.33462000000000136, 0.3506100000000002, -0.5974799999999982, -0.8505900000000017, -1.5440099999999983, -1.940250000000002, -1.609140000000001, -0.7308599999999972, -1.2885600000000008, -1.8696600000000063, -1.7039100000000005, -1.1797499999999976, -1.5830099999999967, -0.45435000000000003, -0.39857999999999816, -0.01676999999999995, 0.22425000000000017, -0.11543999999999666, 0.05850000000000133, -0.38102999999999887, -0.7101899999999988, -1.0873200000000014, -0.21995999999999838, -0.2004600000000003, -0.031199999999998562, -0.8634599999999972, -1.6337099999999998, -1.815450000000002, -1.6996199999999955, -2.3481899999999927, -2.5931099999999994, -2.4105899999999987, -1.6801199999999943, -0.7062900000000012, -1.5326999999999975, -1.9032000000000022, -1.2628199999999992, -0.9207899999999984, -1.0678199999999984, -0.7039499999999996, -0.7530899999999965, -0.8806199999999991, -0.5530199999999992, -1.0030799999999953, -1.7912699999999955], [0.0, 0.08930999999999933, 0.5038799999999988, -0.11426999999999987, -0.833430000000001, -2.4024000000000014, -1.734330000000001, -1.8310500000000012, -1.57053, -0.4457699999999989, 0.4937399999999985, -0.32097, -1.6251299999999995, -1.7756700000000007, -0.4508400000000019, -0.07176000000000071, 0.49998000000000165, 0.5479500000000002, 0.09009, -0.6462300000000007, -0.39429000000000114, 0.5280599999999995, 0.3003000000000018, -0.36347999999999914, -1.2963599999999997, -0.44577000000000266, -0.5666700000000005, -0.5241599999999969, -0.6614399999999998, -0.846690000000001, -1.86966, -2.2425000000000015, -2.869230000000001, -2.2089600000000016, -0.8712600000000015, -0.702390000000001, -0.3030300000000019, 0.11036999999999786, 0.3392999999999957, 0.927420000000001, 0.75543, 0.7733700000000017, -0.0986700000000007, -0.854879999999999, -0.7335899999999993, -1.2873899999999987, -1.4488500000000006, -1.3552500000000016, -1.53309, -1.3958100000000007, -1.7304300000000001, -1.2363000000000013, -1.6013400000000013, -1.3462800000000004, -0.6165900000000011, -0.2012400000000003, 0.06083999999999934, -0.3662100000000006, -0.2975700000000021, -1.1727300000000003, -0.9180599999999992, -0.605670000000001, -1.1122800000000002, -0.8681400000000001, -1.052610000000001, -0.8365500000000006, -1.316250000000001, -0.6618300000000019, -0.8634600000000008, -0.4313400000000003, -1.5947100000000012, -1.5428400000000004, -1.242150000000001, -1.26087, -0.8821800000000009, -0.6279000000000003, -0.8338199999999998, -0.8357699999999997, -1.2277200000000004, -1.249950000000001, -1.7507100000000007, -1.39698], [0.0, -0.24804000000000048, -0.14741999999999678, -1.5299700000000023, -2.301000000000003, -2.0868899999999977, -1.6723200000000027, -1.4858999999999964, -2.1812699999999996, -0.6657300000000053, 0.5128499999999949, 0.40637999999999774, 0.17277000000000164, 0.21723000000000603, 0.27806999999999693, -0.21372000000000035, 1.1072099999999967, -0.13299000000000838, 0.14313000000000287, -0.03899999999999437, -0.18212999999999813, 0.4204200000000027, -0.44616000000000167, -1.1465999999999994, -1.849769999999995, -2.3345399999999943, -2.2577100000000003, -2.253420000000003, -2.412539999999998, -2.767049999999996, -2.773680000000006, -1.7721599999999977, -1.7854199999999985, -1.0608000000000057, -0.7246200000000025, -0.07371000000000105, -0.2632500000000082, -0.2847000000000035, -1.2686700000000002, -0.5023200000000028, 0.18096000000000068, -0.522209999999995, -0.7359300000000006, -1.1333399999999987, -1.0428599999999975, -0.4797000000000011, -1.6496999999999966, -1.6278599999999948, -0.0963300000000018, 0.027299999999999436, 0.17628000000000377, -0.017939999999998513, -0.16497000000000206, 0.5253300000000012, -0.07995000000000019, 1.0257000000000005, 0.6957600000000088, -0.2714400000000001, 0.40247999999999706, -0.06123000000000367, -0.205530000000004, -0.4309499999999957, -1.3673400000000022, -1.6528200000000002, -0.7086300000000021, -0.1602900000000016, -0.6388199999999973, -0.9227400000000063, -0.15639000000000092, 0.05147999999999797, -1.373189999999993, -1.9476600000000026, -1.5272399999999955, -1.2343499999999974, 0.37479000000000173, -0.5471699999999995, -0.2531100000000004, -1.1025300000000007, -1.6149900000000086, -1.182479999999992, -1.2519000000000018, -1.4937000000000031], [0.0, 0.5339099999999971, 1.932059999999999, 1.7354999999999983, 0.43328999999999823, -0.3127800000000015, -0.6739200000000013, -0.4130100000000019, 0.13571999999999762, 0.6150299999999984, 1.5759899999999973, 0.23555999999999833, 0.6941999999999986, -0.1942200000000015, 0.3927299999999978, 0.880229999999998, 1.3146899999999984, 0.3494399999999984, 0.5701799999999986, 1.185989999999998, 1.6504799999999982, 0.26129999999999837, -0.696150000000001, -0.6594900000000011, -0.007800000000001139, 1.1040899999999993, 1.2320099999999976, 0.5046599999999982, 0.8833499999999985, 0.26597999999999866, -0.7651800000000025, -1.3696800000000025, -1.6598400000000018, -0.9968400000000018, 0.26285999999999893, 0.8232899999999981, 0.8006699999999981, 1.0588499999999987, 1.7912699999999981, 2.033459999999998, 2.2467899999999976, 2.5634699999999997, 1.9453199999999975, 1.4004899999999973, 1.1551799999999983, 0.7413899999999986, 1.224599999999999, 1.8708299999999993, 1.927379999999999, 1.6372199999999992, 0.48164999999999825, 0.12284999999999746, 0.4137899999999979, 0.5335199999999979, 0.7940399999999985, 1.613039999999998, 1.7226299999999988, 1.9757399999999983, 1.5334799999999986, 0.7355399999999984, -0.17706000000000188, -0.9344400000000025, -0.6091800000000022, -0.4644900000000022, 0.12674999999999909, 0.20552999999999805, 0.41924999999999835, 0.2928899999999987, 1.3942499999999984, 1.2242099999999985, 1.2838799999999986, -0.48282000000000236, 0.008579999999999033, 0.13142999999999916, 0.9488699999999975, 1.4613299999999985, 1.4441699999999975, 0.3927299999999983, 0.7105799999999977, 0.1907099999999985, 0.8443499999999982, 0.4418699999999982], [0.0, -0.7164300000000039, -0.7094100000000014, -1.0584600000000024, -2.068950000000002, -1.9082700000000024, -2.5911600000000026, -1.8833100000000027, -1.704690000000003, -1.4987700000000013, -0.5467799999999996, -0.5089500000000027, -1.645020000000003, -0.9414600000000002, -0.5729100000000047, -1.1941800000000042, -0.06747000000000236, -0.5233800000000035, -1.683630000000001, -0.741000000000001, -1.1384100000000004, -1.1438700000000033, -1.9952400000000015, -2.1921900000000014, -1.7982900000000024, -1.824810000000005, -1.9394700000000014, -1.6368300000000005, -2.039700000000003, -2.345070000000002, -2.7787500000000036, -3.2580600000000017, -3.5759100000000026, -2.8793700000000015, -2.2288500000000018, -1.958970000000002, -1.7889300000000015, -1.15362, -0.6844499999999982, -0.48944999999999883, -0.4075500000000023, -0.37947000000000175, -1.3478400000000015, -1.5377700000000019, -1.6957200000000034, -1.8798000000000024, -2.368860000000001, -2.2452300000000003, -1.5572700000000017, -1.207050000000002, -1.5182700000000007, -1.9511700000000005, -2.0666100000000034, -1.9172399999999994, -1.5100800000000008, -0.9168900000000004, -1.423500000000001, -0.6711900000000033, -0.7371000000000025, -1.3232699999999986, -1.6048499999999999, -2.8891200000000024, -2.7448200000000016, -2.001480000000002, -0.7339800000000021, -0.7893600000000007, -0.9625199999999992, -2.2448400000000017, -3.0306900000000017, -2.081430000000001, -1.985490000000002, -1.9726200000000023, -2.5677600000000007, -2.3045100000000023, -1.5525900000000008, -0.7636200000000017, -1.191450000000001, -2.095080000000002, -1.449630000000003, -0.8560500000000029, -1.0385700000000022, -1.8454800000000038], [0.0, 0.15482999999999647, 0.24881999999999582, 0.7417799999999968, 1.1910599999999971, -0.33072000000000834, -0.8946600000000009, -0.8482500000000082, -0.23751000000000477, -0.24297000000000324, 0.8689199999999939, 0.7998899999999964, 0.6068399999999925, -0.3564600000000109, -0.2850900000000083, 0.6563699999999999, 0.7604999999999986, 0.8833499999999925, -0.4286100000000044, -0.23673000000000854, 0.5007599999999939, 0.6567599999999914, -0.45318000000000236, -0.8369400000000029, -0.4032600000000075, -0.40638000000000485, -0.011700000000005595, 0.03275999999999524, 0.6875699999999947, 0.30965999999999294, -0.8162700000000047, -1.323270000000008, -1.9203600000000005, -1.2335700000000012, -1.4593800000000048, -0.27534000000000525, 0.691469999999994, 0.2410199999999949, 0.7714199999999942, 1.8283199999999957, 2.026439999999998, 1.6766099999999953, 2.2608299999999937, 1.629419999999993, 0.8123699999999938, 0.2663699999999949, 0.005849999999995248, 0.06122999999999568, -0.263640000000005, -0.176670000000005, 0.5565299999999933, 0.44342999999999666, -0.7495800000000017, -0.5639400000000077, -0.02691000000000532, 0.4718999999999931, 0.17120999999999453, 0.7062899999999934, 1.350569999999994, 0.499199999999997, 0.9870899999999967, -0.5019300000000042, -0.9367800000000006, -1.0947300000000002, -0.17940000000000644, 0.4067699999999932, -0.0877500000000051, -0.06396000000000512, -0.22659000000000518, -0.4067700000000034, 0.1536599999999928, 0.09203999999999324, -0.05772000000000865, -0.8615100000000027, -1.338479999999997, 0.29327999999999443, 1.0214099999999937, -0.4886700000000026, -0.3619200000000058, 0.6275099999999956, 0.42938999999998906, 0.35645999999999267], [0.0, -0.2332200000000011, -0.564330000000002, -0.6953700000000025, -1.386840000000002, -1.777230000000002, -1.401270000000002, -2.531100000000002, -2.6145600000000013, -1.084590000000001, -0.5034900000000004, 0.11036999999999697, 0.08190000000000142, -0.3993600000000017, -1.385670000000001, -1.9028100000000017, -2.646930000000002, -2.413320000000001, -1.5490800000000013, -1.7292600000000014, -2.1114600000000014, -2.0077200000000013, -2.889120000000002, -3.104790000000002, -3.4370700000000025, -1.9347900000000031, -1.6836300000000033, -2.481180000000002, -1.8193500000000018, -1.9527300000000023, -1.9375200000000015, -2.4850800000000017, -2.6633100000000023, -2.246790000000002, -2.446080000000002, -2.289690000000002, -1.639950000000001, -1.6391700000000018, -0.5557500000000015, -0.5580900000000011, -0.9223500000000011, -0.5565300000000024, -1.200420000000002, -1.4788800000000015, -2.052960000000002, -1.723800000000002, -1.302210000000002, -1.916850000000002, -1.5467400000000016, -1.428960000000002, -1.9320600000000017, -1.8474300000000017, -1.6594500000000016, -1.8856500000000014, -1.6122600000000014, -0.265590000000002, 0.23399999999999865, -0.2831399999999995, -0.8985600000000002, -0.7148700000000012, -0.819780000000002, -2.1492900000000015, -2.2249500000000015, -1.5514200000000016, -0.6360900000000023, -1.405170000000002, -1.3209300000000024, -1.4266200000000016, -1.3755300000000017, -1.6633500000000019, -1.7823000000000015, -2.792790000000001, -1.677390000000002, -1.5927600000000013, -2.1325200000000017, -0.9695400000000023, -0.4816500000000006, -1.5681900000000013, -1.6672500000000012, -1.417260000000001, -1.296750000000002, -2.1021000000000014], [0.0, -0.5463899999999993, 0.48360000000000003, 0.8069099999999967, 0.6177599999999996, 0.17393999999999998, -0.5288399999999993, -0.19070999999999838, -0.037829999999999586, 0.11309999999999931, 0.38063999999999965, 0.9211799999999997, -0.0573300000000021, 0.23477999999999843, 1.2897300000000005, 0.7468499999999993, 1.2573599999999998, 1.8458699999999995, 1.49994, 1.0709399999999993, -0.25818000000000163, -0.6887399999999979, -1.747589999999994, -1.6220099999999937, -0.6821099999999984, 0.06474000000000046, 0.949260000000002, 0.5015399999999999, 0.3669900000000017, -0.14078999999999997, -1.464840000000002, -1.9297199999999957, -1.0916100000000024, -0.5931899999999986, -0.7211100000000044, -0.31316999999999995, 0.13376999999999928, -0.06201000000000123, 0.1583400000000017, 1.2363000000000004, 2.1032700000000015, 2.535780000000001, 2.0459400000000016, 1.3256099999999975, 1.3942500000000018, 0.8931000000000009, -0.49842000000000075, -0.612299999999999, -0.2394599999999989, -0.031980000000001674, 0.31863000000000063, 0.39779999999999704, -0.3108300000000015, 0.30615000000000103, 1.1462099999999986, 0.4356300000000002, 1.1341199999999998, 1.941420000000001, 1.7440799999999994, 0.24687000000000214, 1.1146199999999968, 0.24842999999999993, -0.8232900000000023, -0.7995000000000041, -0.04719000000000095, -0.12987000000000037, 0.23516999999999877, 0.4336800000000012, 0.39116999999999624, 0.7495800000000017, 0.7846799999999998, 1.0307699999999982, 0.34943999999999864, -0.12363000000000213, 0.7004399999999991, 0.9090900000000022, 0.4687800000000011, 0.4153499999999992, 0.989040000000001, 0.835380000000002, 0.05927999999999978, -0.7281299999999988], [0.0, -0.4137899999999979, -0.10334999999999273, -0.14976000000000278, -0.7308600000000007, -1.5459600000000036, -1.4972099999999937, -0.64662, -0.572909999999998, -0.5381999999999949, -0.636089999999998, -0.13571999999999873, 0.05811000000000188, -0.13727999999999696, -0.15755999999999526, -1.1828699999999976, -1.290510000000002, -0.9746099999999975, -1.8950099999999974, -1.3384799999999997, -1.0268699999999997, -1.7538299999999953, -2.3657399999999997, -1.5139799999999966, -1.570139999999995, -1.0674299999999972, -0.4609800000000015, -0.7195499999999981, -0.29016000000000064, -0.9761700000000006, -2.0716799999999935, -2.349359999999992, -2.3973299999999993, -3.437850000000001, -2.222999999999998, -2.1957000000000013, -0.8981699999999986, -0.6056699999999973, -0.6614399999999971, 0.6080099999999997, 0.6333600000000006, 0.4208100000000017, 0.03939000000000181, -0.39350999999999736, -0.7043399999999962, -1.1009699999999962, -1.1746800000000004, -0.6392100000000012, -1.0927799999999972, -1.0393499999999944, -0.3139499999999953, 0.08346000000000231, -0.6891300000000014, -0.7612799999999988, -0.7308599999999963, -0.1786199999999969, -0.05888999999999678, 0.1797900000000019, -0.1306499999999966, -0.6083999999999974, -1.862249999999996, -2.185169999999995, -2.8848300000000027, -2.0182499999999983, -1.1684399999999968, -1.3057200000000009, -1.36071, -1.5490799999999991, -1.2534599999999978, -0.5428799999999985, -0.5405399999999951, -1.3766999999999978, -1.6262999999999979, -1.5584399999999947, -1.5389399999999966, -0.6216599999999994, -0.3396899999999965, 0.28041000000000427, -0.4001399999999995, -0.6875699999999978, -0.03314999999999646, -0.7612799999999993], [0.0, -0.19616999999999596, -0.6442800000000011, 0.519480000000005, 0.18954000000000093, -0.43913999999999387, 0.29951999999999934, -0.38180999999999266, 0.11817000000000011, 1.054560000000004, 2.1329100000000065, 1.8115500000000022, 1.3805999999999985, 1.0756200000000042, 0.00818999999999992, 0.7581600000000002, 1.129440000000001, 1.4367600000000031, 0.9980100000000043, 0.02456999999999887, 0.2574000000000014, -0.3732299999999995, 0.3471000000000011, 0.12792000000000403, -0.7214999999999998, -0.8821799999999955, 0.07800000000000029, -0.06941999999999648, 0.4270500000000048, 0.6064500000000015, -0.8817899999999916, -1.5989999999999922, -1.3451100000000071, -0.9125999999999914, -0.5514599999999978, 0.053040000000007304, 0.33111000000000335, 0.44421000000000177, 0.16380000000000372, 1.3556400000000033, 1.900860000000001, 1.9082700000000017, 1.5779400000000012, 1.0732799999999996, 0.29523000000000277, 0.41535000000000366, -0.24492000000000047, -0.23633999999999933, -0.0007799999999988927, -0.07487999999999762, 0.6497399999999995, 0.1423500000000022, 0.5183100000000067, 0.3213600000000083, 0.5807100000000007, -0.22853999999999175, -0.1680899999999923, 1.6142100000000057, 1.5826200000000017, 1.9320600000000034, 0.23127000000000475, 0.08579999999999544, -0.1723800000000022, 0.49647000000000485, 1.3158600000000047, 0.9516000000000018, 0.6832799999999999, -0.16262999999999916, -0.12050999999999679, 1.0436400000000052, 0.5853900000000012, -0.322140000000001, -0.7347600000000032, -0.8747700000000016, 0.3626999999999976, 1.0912200000000007, 1.1345100000000015, 1.0912199999999999, 1.1278800000000033, 1.2015900000000026, 0.3166800000000034, -0.45240000000000347], [0.0, -0.02145000000000241, -0.9668099999999997, -1.1146200000000013, -0.3088799999999954, -0.21371999999999947, -0.02846999999999822, 0.320970000000004, -0.5046599999999986, -0.09087000000000067, 0.5662799999999999, 0.38688000000000144, 0.9094800000000012, 0.4839900000000008, 0.64194, -1.126319999999997, -1.89072, -1.1910599999999971, -0.32174999999999576, -0.625559999999997, -0.7062899999999979, -0.852539999999999, -0.7035599999999995, -1.3677300000000008, -1.2386400000000006, -1.0143899999999997, -0.3404699999999945, 0.1271400000000007, -0.1774499999999959, -0.6041099999999995, -1.4500199999999976, -1.9094399999999947, -2.484689999999996, -2.423069999999993, -2.004599999999998, -1.2577499999999997, -0.7803899999999953, -0.5865599999999977, -0.08579999999999588, 0.13650000000000428, 0.35801999999999845, 0.33423000000000513, 0.7554300000000014, 0.6766500000000031, 0.06630000000000313, 0.2807999999999997, -0.3447600000000004, -1.0822499999999957, -0.7866299999999988, 0.09945000000000626, -0.3065399999999956, -0.06161999999999823, -0.9262500000000005, -0.8416199999999971, 0.005850000000002353, -0.13649999999999896, 0.5171400000000017, 1.3497900000000014, 1.0600200000000013, 0.045240000000001945, -0.7823399999999974, -1.8680999999999974, -2.220659999999996, -1.9074899999999975, -0.040559999999998375, -0.7893599999999981, -0.8197799999999993, -1.0678199999999984, -1.3899600000000003, -1.4496299999999929, -0.9535499999999955, -1.1891100000000012, -1.1524499999999986, -1.1333399999999987, -0.7277399999999976, -0.790919999999999, -0.3346199999999988, -0.8829599999999971, -0.8400599999999976, -1.8212999999999981, -0.6087899999999999, -0.3884399999999988], [0.0, -0.44381999999999877, -1.2479999999999998, -0.5448300000000006, -0.60294, -0.7792199999999996, -0.7335900000000024, -0.4590300000000016, -1.4706900000000016, -0.9211800000000019, -0.4496700000000018, 0.11543999999999977, 0.32721000000000033, -0.3474900000000001, -0.16029000000000004, -0.0666899999999997, 0.027689999999999326, 0.05889000000000033, 0.10100999999999916, -0.47384999999999966, -0.7164300000000021, -1.3029900000000016, -1.4570400000000028, -1.6142100000000008, -1.6692, -0.31551000000000085, -0.9192299999999993, -0.34086000000000083, -0.9098700000000028, -1.8193499999999996, -2.250300000000004, -2.9640000000000013, -2.3895300000000055, -1.9960200000000006, -1.3790400000000012, -1.5241200000000008, -1.0097099999999983, -0.7207200000000002, -1.6504799999999964, -0.5027099999999989, -0.6704100000000011, -0.7546499999999976, -0.7585500000000018, -0.4765799999999998, -0.8634599999999999, -0.1060800000000004, -0.6399900000000012, -0.329159999999999, -1.1489400000000023, -0.2987400000000009, -0.03003000000000089, 0.23828999999999922, 0.045239999999997504, 0.5678399999999987, 0.1848600000000009, -0.28236000000000083, -0.540540000000002, 0.8041799999999999, 0.6626100000000001, 0.5592599999999999, -0.9941100000000005, -1.37046, -1.4320799999999996, -0.38531999999999944, 0.1949999999999994, -0.7655700000000012, -0.14352000000000098, -0.45513000000000137, -0.8501999999999996, -0.33618000000000126, -0.5967000000000009, -1.6142099999999964, -1.50462, -1.0346700000000033, -0.5701800000000021, -0.2055300000000011, -1.0701600000000018, -0.5198699999999998, -0.9363900000000007, -0.32955000000000045, -0.3759600000000014, -1.4574300000000027], [0.0, -0.3455400000000006, -0.8217300000000004, -0.12519000000000036, -1.287780000000001, -1.974960000000003, -1.8556200000000014, -1.1282700000000006, -1.3029900000000008, -0.8837400000000009, 0.013649999999998719, 0.2398499999999978, 0.3724499999999987, -0.8404500000000009, -1.5650700000000013, -0.7768800000000007, -1.4609400000000008, -0.37284000000000056, 0.27416999999999947, -0.7113600000000011, -0.6559800000000009, -1.1247600000000002, -1.29909, -1.8181800000000017, -2.0299500000000017, -1.510860000000001, -1.6575000000000009, -1.4898000000000007, -2.1157500000000007, -1.7241900000000006, -2.573610000000002, -3.2046300000000034, -2.4410099999999995, -1.896570000000001, -1.8743400000000006, -1.1321700000000008, -1.1680500000000007, -0.5440500000000008, -0.923910000000001, -0.5073900000000007, 0.4477199999999987, 0.0627899999999989, -0.2636400000000009, -0.8002800000000008, -1.403610000000001, -0.7386600000000008, -0.5826600000000008, -0.5799300000000003, -1.71951, -1.4430000000000007, -1.314300000000001, -0.9738300000000009, -1.4207700000000005, -1.3614900000000012, -1.4566500000000002, -0.8236800000000009, -0.6185400000000004, -0.25935000000000064, 0.4020899999999986, -1.0705500000000006, -1.1243700000000005, -0.5218200000000011, -0.5335200000000008, -0.4898400000000008, 0.08228999999999831, 0.016379999999998507, -0.7488000000000006, -0.7546500000000012, -1.2460499999999994, -1.1380200000000005, -1.52568, -0.9309300000000007, -1.8255900000000018, -1.3876200000000014, -1.252290000000001, -0.8599500000000004, -0.8053500000000002, -1.3158600000000007, -0.5842200000000002, -0.42705000000000104, -0.6957600000000018, -1.220310000000001], [0.0, 1.0869299999999975, 0.7035599999999995, 0.37673999999999674, 0.08346000000000009, -0.1442999999999981, -0.21099000000000023, -0.9512099999999979, -0.8697000000000008, 0.05108999999999897, 0.20084999999999864, 0.29015999999999886, 0.6446699999999974, 0.03977999999999593, -0.3954600000000008, -0.0074099999999992505, 0.2940599999999991, 1.0440300000000016, 1.1520599999999988, 0.2726099999999989, 1.120079999999998, 0.672359999999999, 1.2051000000000025, -0.1283099999999986, -0.01950000000000296, 0.273779999999999, -0.18252000000000246, 0.03275999999999746, -0.46058999999999717, -0.5674499999999991, -1.5436200000000042, -1.8181800000000035, -1.4051699999999983, -1.2090000000000014, -0.4746300000000012, 0.4321199999999972, -0.14352000000000453, 0.38805000000000023, 1.099019999999998, 0.9106499999999969, 0.6797699999999991, 0.42392999999999637, 0.5639399999999988, 0.22073999999999838, -0.33267000000000335, -0.028859999999998998, -0.20942999999999534, 0.3654299999999968, 0.4785299999999997, 0.27923999999999394, 0.23750999999999722, 0.3350099999999996, 0.5370299999999979, 0.4859399999999976, 0.6528599999999973, -0.06006000000000178, -0.37986000000000386, 1.0522199999999997, 2.0903999999999985, 0.9375599999999991, 0.10763999999999818, -0.20982000000000234, -0.3459300000000023, 0.38102999999999865, 0.3595800000000011, 0.1353299999999984, 0.8470799999999987, 0.012089999999999268, -0.5487300000000026, -0.46605000000000274, -0.29289000000000254, -0.5612100000000027, -0.38727000000000045, -0.060840000000005556, 0.14898000000000478, 0.4890599999999985, -0.755430000000004, -0.9629099999999999, -0.39507000000000225, -0.15288000000000412, -0.019890000000001073, -0.34905000000000186], [0.0, -0.9180600000000008, -1.2363000000000017, 0.05732999999999677, -0.17667000000000144, -1.630980000000001, -1.673100000000001, -1.1774100000000012, -1.2577500000000017, -1.172730000000001, -0.3311100000000011, 0.06395999999999757, -0.1333799999999994, -0.1614599999999995, -1.3380900000000018, -1.844700000000002, -2.0194200000000015, -0.600989999999999, -0.17589000000000254, -0.31044000000000027, -0.12324000000000312, -0.44459999999999944, -0.6735300000000026, -0.48126000000000113, -1.0276500000000028, -1.8517200000000011, -1.7050800000000024, -1.8224700000000023, -1.8720000000000012, -2.290470000000002, -1.7366700000000015, -1.9593600000000015, -2.4363300000000017, -1.8408000000000015, -1.429740000000003, -0.9406800000000015, -0.4336800000000012, -0.83148, -1.1161800000000013, -0.9675900000000017, -0.639209999999999, -0.48594000000000115, -0.09749999999999748, -1.3018200000000013, -1.8918900000000018, -1.8181800000000017, -1.456650000000003, -0.8973900000000019, -0.6774300000000006, -0.5865600000000017, -0.6957600000000022, -0.744120000000001, -0.5818800000000026, -1.052610000000001, -1.3665600000000004, -0.44928000000000257, 0.047969999999997626, 0.5073900000000005, 1.0034699999999988, 0.1930499999999964, -0.3576299999999999, -0.6224399999999988, -0.9445799999999993, -0.07799999999999807, -0.22698000000000151, -0.3506100000000014, -0.7690800000000004, -1.5124200000000008, -1.8532800000000016, -0.6084000000000023, -0.8977800000000009, -0.8396700000000008, -0.6684600000000005, -1.7745000000000009, -1.425450000000001, 0.2246399999999955, -0.7788300000000004, -1.316640000000002, -1.1781899999999998, -1.1349000000000018, -0.9796800000000012, -1.2616500000000013], [0.0, 0.14508000000000454, -0.06864000000000203, -0.6544200000000027, -0.3615300000000019, -1.0151699999999924, -1.9418100000000003, -1.7596799999999977, -1.32951, -0.32837999999999656, 0.21956999999999738, 1.145429999999997, 1.4609399999999986, 0.8408400000000009, 0.7538699999999947, 0.36972000000000094, 0.5323500000000028, 0.5319600000000007, 0.4785300000000001, -0.23751000000000033, -0.9738299999999995, -0.5701799999999988, -0.625170000000006, -0.6466199999999995, -0.6228299999999942, -0.1528800000000068, -0.4508399999999977, -0.5354699999999948, -1.1017500000000036, -0.06123000000000012, -0.7749300000000021, -2.1555299999999997, -2.4546599999999987, -1.10799, -0.6583199999999945, -0.1247999999999978, -0.5428799999999976, 0.46721999999999575, 1.210169999999997, 0.25310999999999684, 0.8072999999999992, 0.2823599999999997, -0.15015000000000267, 0.36582000000000114, -0.3248700000000042, -0.40092000000000017, -0.44030999999999665, -0.7343699999999975, 0.25077000000000194, 0.07059000000000015, -0.33734999999999804, 0.21917999999999793, -0.4851600000000005, 0.10802999999999496, -0.11310000000000553, -0.3127799999999965, 0.31473000000000084, 1.077569999999998, 1.6145999999999976, 0.25544999999999973, -0.46839000000000475, -0.7464599999999946, -1.0366199999999974, -1.1454299999999975, -1.408290000000001, -1.4539200000000045, -0.5994299999999972, -0.439919999999999, 0.07097999999999516, 0.5565299999999986, -0.20046000000000586, -0.5362499999999946, -0.7585499999999987, -1.123979999999995, -0.9878699999999947, -0.9426299999999959, -0.9909899999999991, -0.9161100000000015, -0.9512100000000014, -0.7425599999999992, -1.361100000000004, -0.9293700000000005], [0.0, 0.6240000000000006, 0.6103500000000048, -0.3591899999999928, 0.17199000000000186, -0.6805499999999949, -0.4835999999999965, -0.43952999999999065, -0.7218899999999824, -0.914549999999994, -0.5366400000000002, -0.09008999999999379, 0.6770400000000061, 0.41340000000000376, 0.6072300000000066, -0.008579999999993149, -0.553019999999993, -0.27650999999999293, 0.5495100000000095, 1.0912200000000043, 0.44888999999999957, 1.1555700000000053, 0.6302400000000059, 1.1317800000000071, 0.6302400000000059, -0.19694999999999574, -0.6130799999999939, -0.7877999999999998, -1.4055599999999977, -0.5370299999999899, -1.347059999999992, -1.615769999999988, -1.8938399999999955, -1.3899599999999959, -1.5338699999999994, -0.5424899999999946, 0.4531800000000006, 0.08619000000000465, 1.205490000000001, 1.2370800000000033, 0.7893600000000038, 0.2570100000000064, 1.030770000000003, -0.41924999999999635, -0.8498099999999926, -0.4676099999999943, -0.2862599999999871, -0.3958499999999887, 0.148200000000009, 0.2804100000000034, -0.029249999999989562, -0.3868799999999952, 0.1610700000000067, 0.33579000000000114, 0.04602000000000572, 0.6396000000000068, 0.4527900000000029, 0.7359300000000033, 2.320110000000004, 0.4808700000000048, -0.43835999999999853, -0.5873399999999913, 0.4699500000000061, 0.05304000000000286, 0.16029000000000337, 0.06825000000000525, 0.01092000000000315, -0.049529999999998076, -0.2000699999999913, 0.17277000000000697, 0.015210000000005053, -0.3779099999999893, 0.037830000000000474, -0.20396999999999732, -0.06512999999999192, 0.09516000000000613, 0.15716999999999715, -0.3045899999999957, -0.27845999999999194, -0.5413199999999954, -0.4718999999999962, -0.20162999999999442], [0.0, -0.6532500000000007, -0.6267300000000001, -0.8291400000000003, -0.12987000000000015, -0.7257900000000003, -1.0506600000000001, -0.70239, -0.5007600000000005, -0.12168000000000045, 0.6419399999999984, 0.41808000000000023, 0.8053499999999998, 0.5042699999999989, -0.03393000000000079, -0.7928700000000004, -0.15561000000000047, 0.31433999999999895, 0.11621999999999988, 0.8494199999999967, 0.09827999999999892, 0.3186299999999993, 0.17081999999999942, -0.4492800000000007, -0.19812000000000074, -0.42276000000000064, -1.4293500000000001, -1.29012, -1.0756200000000014, -1.3201500000000028, -1.5096899999999995, -2.01903, -1.580280000000001, -2.0541300000000007, -1.1731200000000004, -0.9621300000000004, -1.4547000000000005, 0.04718999999999929, -0.7741500000000003, -0.17316000000000042, -0.19149000000000005, -0.5662800000000008, -0.6758700000000004, -0.7733700000000001, -1.8068700000000006, -1.0869300000000006, -0.5323500000000004, -0.9071400000000005, -0.2683200000000006, -0.2246400000000004, 0.059279999999999555, -0.3755700000000005, -0.7729800000000006, -0.6563700000000002, -0.5818800000000012, -0.04719000000000029, 0.5128499999999998, 0.17783999999999944, 0.22502999999999895, -0.1368900000000005, -0.8755500000000006, -0.3026400000000007, -0.24765000000000104, -0.75309, -0.29562000000000055, -0.6427200000000004, -0.5900700000000001, -0.2640300000000004, -0.7437300000000003, -0.7839000000000006, -0.1298700000000006, -0.2644200000000005, -0.6942000000000005, -0.3467100000000003, -0.9453600000000009, -0.6665100000000005, -0.7195500000000006, -0.29250000000000104, -0.9363900000000004, -1.6142100000000001, -1.2795900000000002, -1.6914300000000004], [0.0, 0.19811999999999919, -0.11856000000000089, 0.644669999999999, 1.7951699999999993, 0.353339999999999, -0.1587300000000007, -0.06591000000000058, 0.38882999999999845, 2.0591999999999997, 1.8263699999999996, 1.531919999999999, 1.2273299999999996, 1.0054199999999998, 1.01868, 0.8154899999999986, 1.4117999999999995, 1.287389999999999, 2.260439999999999, 3.0041699999999985, 2.2401600000000013, 2.73975, 2.63094, 3.0490199999999987, 2.4967799999999984, 1.6223999999999994, 1.8205199999999997, 2.0209799999999998, 1.5525899999999986, 0.7296899999999985, 0.25895999999999764, -0.15755999999999948, 0.1485900000000001, -0.24804000000000048, 0.2534999999999996, -0.07215000000000127, -0.2277600000000013, 0.6610500000000001, 1.1469899999999988, 0.04055999999999926, -0.2574000000000005, 0.3845399999999993, 0.36503999999999903, 1.3720199999999996, 0.9944999999999999, 0.7565999999999994, 1.3669499999999992, 1.0884899999999995, 0.9348299999999996, 1.5342599999999993, 2.4745499999999985, 3.1320899999999985, 2.62509, 1.83612, 1.6641299999999997, 2.4453000000000005, 2.4332099999999994, 2.535779999999998, 2.82594, 2.3240099999999995, 1.037789999999999, 1.6988399999999992, 1.3435499999999998, 1.1524499999999995, 0.8950499999999997, 0.15288000000000002, 0.8451299999999996, 0.5202600000000014, 1.8579599999999994, 1.7608499999999991, 1.5638999999999994, 1.3961999999999994, 1.2292799999999995, 0.22151999999999994, 0.41417999999999944, 0.6076200000000004, 0.43874999999999886, -0.1513200000000008, 0.61035, 0.5374199999999995, 0.27260999999999824, -0.3857100000000018], [0.0, -0.29523000000000127, 0.16184999999999883, -0.06240000000000023, -0.039780000000000704, 0.21137999999999868, -0.621660000000001, -1.1629800000000023, -0.9040200000000005, -0.6949800000000009, 0.07643999999999906, 0.28157999999999883, 0.6142499999999997, 0.509339999999999, 0.708239999999998, -0.7020000000000005, 0.5190899999999994, 0.5584799999999983, -0.051870000000000194, 0.206310000000001, 0.1829100000000009, -0.06318000000000068, 0.38609999999999944, -0.49335000000000095, -0.07917000000000063, -0.7129200000000003, -0.45357000000000064, -0.5479500000000003, -0.22815000000000085, -0.43680000000000063, -1.071720000000001, -1.4976000000000014, -1.3926900000000013, -1.7245800000000016, -1.355640000000001, -0.6275100000000008, -0.4976400000000004, -0.04329000000000183, 0.13532999999999917, 0.19928999999999975, 0.6259499999999989, -0.21800999999999904, -0.16263000000000094, -0.2371200000000001, -0.19149000000000027, -0.117390000000001, -0.3931200000000005, -0.9746100000000006, 0.12674999999999947, -0.2535000000000005, -0.4200300000000008, -0.20397000000000076, -0.3705000000000012, -0.07566000000000073, -0.2737800000000007, -0.4465500000000012, -0.2460900000000008, -0.23166000000000064, -0.14664000000000132, -0.5775900000000012, -0.6485700000000004, -0.6017700000000017, -0.7433400000000009, -0.9781200000000009, -0.7378800000000006, -1.297530000000001, -0.9703200000000005, -0.2944500000000011, -0.6450600000000007, -0.0744900000000015, -0.8806200000000006, 0.016769999999999285, -0.563160000000001, 0.2995199999999991, -0.08580000000000121, 0.3104399999999983, -0.5109000000000012, -0.6216600000000008, -0.9028500000000008, -1.5483000000000002, -1.686360000000001, -1.483560000000001], [0.0, -0.06356999999999813, 0.18564000000000003, -0.05538000000000043, -0.6033299999999997, -0.07838999999999952, -0.1123200000000002, -0.18797999999999981, 0.43641000000000085, 1.2702300000000004, 1.5615599999999994, 1.7140500000000005, 1.8876000000000046, 0.9991799999999997, 0.31239000000000083, -0.2250299999999993, -0.19460999999999895, 0.32136000000000187, 0.6633900000000015, 1.4375400000000027, 1.3860600000000007, 0.7148700000000014, 1.236300000000001, 0.5818800000000011, 0.6396000000000015, 0.28041000000000005, 0.07838999999999996, 0.0444599999999995, -0.358409999999999, -0.31628999999999907, -0.6072299999999992, -0.9582299999999992, -1.1590799999999992, -1.075229999999999, -1.008929999999999, -0.4637099999999992, -0.3584099999999999, 0.2901600000000002, 0.5924099999999999, -0.14157000000000064, 0.33423000000000136, 0.17043000000000008, 0.021840000000000748, 0.1446900000000011, 0.07176000000000093, -0.12089999999999934, -0.271049999999999, -0.06318000000000024, 0.23868000000000067, 0.9098700000000013, 0.4921800000000003, 0.7776600000000014, 0.7546500000000025, 0.6232200000000008, 0.8240699999999992, 0.6126900000000017, 1.09122, 0.7347600000000012, 0.007410000000001693, -0.1236299999999988, -1.3330199999999992, -0.2016300000000001, -0.11504999999999921, -0.86229, -0.22931999999999841, -0.6571499999999992, -0.805739999999999, -0.638039999999999, -0.05693999999999888, -0.7343699999999997, -0.40013999999999983, -0.11153999999999886, 0.7328100000000008, 0.439140000000001, 0.10607999999999995, 0.6676800000000014, 0.6594899999999999, 0.08930999999999933, -0.514019999999999, 0.14702999999999977, 0.3143400000000003, -0.900119999999999], [0.0, -0.18641999999999914, -0.6887399999999979, -1.707809999999999, -1.8844799999999982, -0.9036299999999997, -1.6415099999999985, -1.5549299999999988, -0.9289799999999953, -0.29249999999999865, 0.20865000000000067, 0.7394400000000012, 0.9414600000000017, 0.2694900000000018, -0.11816999999999855, -1.0834199999999958, -1.0292100000000004, 0.3042000000000018, 0.2558400000000032, 0.05381999999999865, 0.007410000000001249, -0.45473999999999926, -0.9367800000000002, -0.4793100000000017, 0.028860000000000774, -0.6782100000000009, -1.131780000000001, -0.5658899999999982, 0.20241000000000042, -0.3194100000000022, -0.7858500000000026, -1.967549999999998, -1.5092999999999988, -1.059239999999999, -0.9597900000000013, -0.9987899999999974, -0.9219599999999986, 0.005460000000003129, 0.08385000000000153, -0.605669999999999, 0.5635500000000009, 0.03861000000000114, -0.29054999999999787, -0.6126899999999993, -0.5335199999999984, -0.30458999999999836, -0.10256999999999916, -0.8771099999999961, -0.3790799999999983, -0.3131699999999986, -0.49256999999999707, -0.5218199999999991, 0.15326999999999957, 0.22269000000000316, -0.7741499999999966, 0.25194000000000116, -0.3268199999999992, 0.042900000000000826, -1.2382499999999999, -1.7585099999999962, -1.5876899999999998, -0.5163600000000019, -1.330680000000001, -1.1645400000000001, -1.04988, -0.6493499999999996, -0.23165999999999798, -0.5487299999999995, -0.6899099999999989, -0.8966099999999999, -1.0958999999999994, -0.9363899999999972, -1.1618099999999978, -0.8045699999999991, -0.8833500000000005, -0.28080000000000016, -0.6087899999999986, -0.8420100000000006, -1.2573599999999985, -1.3634400000000007, -1.4118000000000035, -1.8583500000000002], [0.0, -0.5803199999999984, -1.0358399999999994, -1.8583500000000002, -2.1941399999999986, -2.278769999999995, -1.855620000000001, -1.2288899999999976, -0.954329999999999, 0.16848000000000096, 0.4469400000000019, 0.33501000000000214, 0.6275100000000013, 0.12870000000000092, 0.11388000000000098, -1.3014300000000012, -0.5658900000000002, -0.43874999999999975, 0.327990000000001, 0.6048900000000013, 0.030420000000001224, 0.29913000000000134, -0.5147999999999975, -0.3248699999999991, 0.2917200000000013, -0.39623999999999904, 0.20202000000000242, -0.20123999999999853, 0.030810000000002002, -0.972659999999999, -1.5978300000000023, -1.8751199999999995, -2.082989999999999, -1.641899999999998, -1.98237, -2.146169999999999, -1.6321499999999975, -0.02495999999999876, -0.24335999999999802, -0.6758700000000002, -0.15482999999999913, -0.1887599999999976, -0.587729999999999, -0.8849099999999976, -0.36191999999999824, 0.3053700000000015, 0.36114000000000124, 0.01872000000000207, -0.5105099999999991, -0.4917899999999995, -0.5725199999999973, 0.24140999999999946, 0.051870000000001304, -0.3389099999999994, -0.4212, 0.07098000000000138, 0.6454500000000014, 0.2745600000000007, -0.994499999999999, -1.6052399999999976, -1.8197399999999995, -1.442999999999997, -2.0603699999999994, -1.9468799999999966, -2.0311199999999996, -1.26282, -1.6251299999999995, -1.630199999999999, -0.8786699999999987, -1.1906700000000003, -1.1754600000000015, -0.9586199999999963, -0.647009999999999, -0.6965399999999993, -1.856009999999999, -1.9925099999999993, -1.3174200000000003, -1.5958799999999966, -1.9948499999999996, -1.2027599999999996, -1.501889999999999, -1.2456600000000013], [0.0, 0.030030000000000723, -0.03314999999999918, 0.037050000000001526, -0.4964699999999994, -1.0194599999999991, -0.8283599999999987, -0.7094099999999997, -1.1688299999999976, -0.6922499999999987, -0.32369999999999927, 0.25194000000000155, 0.04251000000000088, 0.5421000000000009, 0.46839000000000014, -0.13415999999999934, 0.0362700000000003, -0.023399999999999255, 0.05616000000000071, -0.06122999999999934, -0.2222999999999995, 0.015600000000001224, 0.13494000000000045, 0.3439800000000008, 0.1755000000000006, 0.22464000000000067, 0.27768000000000087, 0.26715000000000094, 0.3642600000000003, 0.11583000000000149, -0.40793999999999936, -1.0752299999999997, -1.601339999999998, -0.6914699999999998, -0.7987199999999992, -0.3899999999999991, 0.6665100000000017, 0.37011000000000055, 0.8747699999999994, 0.41769000000000084, 0.3728400000000008, 0.4594200000000012, 0.6458399999999993, 0.536250000000001, 0.35217000000000037, 0.3705000000000009, 0.1341600000000011, 0.45279000000000075, 0.6497400000000009, 0.7928700000000015, 0.7550399999999999, 0.09984000000000132, 0.11544000000000104, -0.21995999999999927, -0.8529299999999994, -0.17393999999999932, -0.08540999999999949, 0.11388000000000026, 0.4383600000000007, -0.26987999999999934, -0.9983999999999988, -0.5861699999999994, -0.6228299999999989, -0.575639999999999, -0.9207899999999992, 0.32721000000000117, -0.44732999999999973, -0.35333999999999877, -0.1364999999999995, -0.15404999999999924, -0.07994999999999969, -0.45668999999999976, -0.19655999999999912, 0.031200000000000838, 0.27534000000000053, -0.15638999999999903, -0.35060999999999926, -0.4898399999999995, -0.2807999999999997, -0.27533999999999914, 0.22659000000000068, -0.6138599999999995], [0.0, 0.3291599999999981, -0.639210000000002, -0.740219999999999, -1.2519, -1.5982199999999978, -1.1157900000000036, -0.5807100000000007, -0.6415499999999996, 0.08618999999999888, 0.6661199999999994, 2.0081099999999994, 2.1098999999999997, 1.57716, 1.2187499999999982, 0.026129999999998876, 0.8061300000000007, 1.1411399999999987, 1.129049999999999, 0.9582299999999979, 0.7780499999999988, 0.8498099999999973, 0.6497400000000009, 1.6535999999999982, 1.5221699999999978, 0.5264999999999986, 0.5920199999999993, 0.7866299999999995, -0.01715999999999962, -0.13610999999999995, 0.06512999999999991, -0.889590000000001, -1.0760100000000024, -0.6208800000000068, -0.03627000000000136, -0.030030000000004442, -0.24062999999999946, 0.9944999999999979, 0.805739999999999, 0.2823599999999975, 0.7207199999999989, 0.3681599999999996, 1.1349, 1.0810799999999985, 0.8817899999999992, 0.7854599999999994, 1.1352899999999995, 0.15170999999999601, 0.5557499999999997, 0.8755499999999987, 0.5853899999999967, 0.542879999999998, 0.33266999999999847, 0.3190199999999983, 0.04719000000000051, 1.3150799999999998, 1.2004199999999996, 0.8057399999999983, 0.15560999999999758, -0.5912399999999995, -0.7000500000000001, -0.8665799999999999, -0.35684999999999967, -0.9757799999999963, -0.3275999999999999, 0.08658000000000055, 0.4555199999999986, 0.22892999999999963, 0.2807999999999984, -0.07215000000000416, -0.304200000000002, 0.13650000000000118, 0.29717999999999956, 0.23165999999999976, -0.5502900000000026, 0.07565999999999695, -0.15171000000000356, -0.027300000000002544, -0.23243999999999732, 0.07097999999999782, 0.302249999999999, -0.3861000000000008], [0.0, -0.06396000000000246, -0.5951399999999984, 0.02807999999999433, 0.7671299999999968, 0.6403799999999982, 0.631409999999998, 0.36854999999999505, 0.04679999999999973, 0.5498999999999925, 1.096679999999996, 1.8602999999999965, 1.2846599999999953, 1.5904199999999955, 1.654379999999998, 1.405169999999996, 1.2647699999999955, 1.0397399999999979, 0.8182199999999944, 0.7441199999999957, 0.999569999999995, 1.2019799999999972, 0.9808499999999993, 1.4695199999999948, 1.3688999999999973, 0.5842199999999993, 1.6262999999999987, 0.7148699999999955, 0.6317999999999979, 0.8248499999999979, 0.47033999999999265, -0.4504500000000049, 0.03470999999999913, 0.8985599999999954, 0.4878899999999926, 0.3279900000000002, 1.3049399999999975, 1.3720199999999942, 1.6711499999999975, 1.1013599999999948, 1.8809699999999956, 1.9788599999999972, 1.5256799999999977, 1.093949999999995, 1.0194599999999978, 1.9839299999999962, 1.6797299999999946, 1.1629799999999961, 2.0408699999999955, 2.6535599999999953, 1.8610799999999978, 1.2682799999999967, 0.7784399999999962, 0.48983999999999916, 1.6508699999999967, 1.9258199999999983, 1.2230399999999952, 1.1633699999999978, 1.0288199999999974, 0.1556099999999958, -0.10724999999999962, 0.9211799999999957, 0.2975699999999937, -0.7803900000000081, -0.861900000000007, 0.31160999999999595, -0.05304000000000286, 0.3938999999999928, 0.5331299999999985, 0.4695599999999951, 0.046799999999994846, 0.556139999999997, 0.8685299999999949, 0.9184499999999978, 0.39467999999999615, 1.221089999999998, 1.2499499999999948, 2.2647299999999975, 1.6727099999999997, 1.3883999999999972, 0.9313199999999942, 0.5155799999999937], [0.0, -0.11934000000000111, -0.35958000000000023, -1.316250000000001, -0.6786000000000048, -0.6789899999999998, -0.44342999999999577, -0.4188599999999987, -0.3038099999999986, 0.45201000000000047, 1.4714700000000005, 0.9028500000000013, 1.4145300000000058, 1.3244399999999956, 0.37791000000000263, 0.17939999999999845, -0.147809999999998, -0.3069300000000039, -0.9258600000000019, -0.8166599999999979, -0.06279000000000323, 0.2675399999999959, 0.37439999999999696, 0.10608000000000128, 0.16380000000000283, -0.5417099999999992, -0.25701000000000374, 0.20397000000000354, -0.36854999999999105, -1.2008099999999962, -1.5377699999999956, -2.0744099999999968, -1.9983599999999981, -1.2043199999999965, -1.6719300000000041, -1.2125099999999929, -0.6325800000000008, 0.24375000000000302, -0.577589999999998, 0.147809999999998, 0.10998000000000019, 0.9129899999999984, 0.928199999999999, 1.0736700000000008, 0.17550000000000043, 0.2694900000000038, 0.12363000000000479, 0.44070000000000187, -0.3248699999999989, 0.7725900000000019, 0.447720000000003, 0.3252600000000041, -0.531569999999995, -0.02534999999999954, 0.3868800000000028, 0.42198000000000446, 0.6376499999999989, 0.20123999999999853, -0.15482999999999691, -1.4749800000000004, -1.1103299999999976, -0.1482000000000001, -0.3061499999999988, -1.294799999999995, -1.0799099999999981, -0.6696299999999997, -0.9944999999999995, -0.5756399999999999, -0.5545799999999996, -0.7647899999999987, -0.40169999999999995, -0.3408599999999966, -0.32447999999999766, -0.13142999999999905, -0.6863999999999928, 0.12908999999999793, 0.5865600000000031, 0.41027999999999976, -0.04835999999999974, 0.05421000000000298, -0.04913999999999774, -0.6817199999999994], [0.0, -0.505830000000001, -0.9804600000000002, -1.1185200000000006, -1.4320800000000005, -1.278419999999998, -0.43211999999999884, -0.5054399999999993, -0.9480900000000009, -0.4644899999999982, -0.42315000000000047, -0.2698800000000011, -0.5908500000000009, -0.43835999999999997, -1.1703899999999994, -0.6130800000000011, -0.20786999999999956, 0.06707999999999836, -0.42392999999999936, -0.694590000000001, -1.0658699999999999, -0.5167500000000006, -0.058109999999999884, -0.33227999999999935, -0.07448999999999995, -0.19968000000000052, 0.0417299999999996, 0.4898400000000009, -0.6988800000000003, -0.9469199999999992, -1.187549999999999, -1.164540000000001, -1.916850000000002, -0.94809, -1.501110000000002, -0.47385000000000066, 0.33422999999999964, 0.54054, 0.4547400000000002, 0.44615999999999956, 0.8474699999999988, 0.47151000000000004, 0.6212699999999997, 0.35060999999999987, -0.005070000000000463, 0.4578599999999995, 0.6368699999999995, 0.6914699999999998, 0.6754799999999996, 0.5179199999999999, 0.858, -0.26442, -0.9360000000000005, -0.6477900000000002, -0.2340000000000001, 0.3716699999999996, -0.1747199999999992, 0.43953, -0.48321000000000025, -0.7261799999999982, -1.30689, -2.0482800000000014, -1.8809700000000018, -1.7226300000000019, -1.6637399999999993, -1.6457999999999977, -1.1485500000000002, -1.52529, -1.55727, -1.4816100000000012, -1.3092300000000012, -1.3899600000000016, -0.4742399999999992, -1.415699999999998, -1.5514200000000002, -0.41145000000000087, 0.0350999999999998, 0.19812000000000013, -0.8112000000000003, -1.3462799999999984, -0.9917700000000002, -0.8151000000000009], [0.0, -0.5846099999999996, -0.8455199999999996, -1.0077600000000004, -1.301430000000003, -1.310790000000001, -1.213680000000001, -1.7167799999999995, -1.7117099999999987, -0.9391200000000004, -0.54366, -0.8517600000000001, -0.8521500000000009, -1.8411900000000008, -1.1427, -1.25073, -1.2039299999999982, -1.6130400000000014, -0.7686899999999999, -1.08693, -0.5502900000000004, -0.5374199999999996, -0.03627000000000061, -0.42354000000000075, -0.42549000000000053, -0.5483400000000008, -0.12636000000000008, -0.6474000000000006, -1.090830000000001, -1.188330000000002, -1.7335499999999993, -1.7850300000000021, -1.56195, -1.9570200000000013, -1.01595, -1.04364, -0.8771100000000009, -0.8872500000000003, -0.4769700000000005, 0.25193999999999994, 0.28508999999999873, 1.1309999999999998, 0.5916299999999988, 0.37517999999999924, 0.5861699999999992, -0.30692999999999976, -0.25115999999999983, -0.5183100000000009, -0.8135399999999999, 0.3654299999999996, -0.5557500000000001, -0.5405400000000002, -0.4453800000000002, -0.5421000000000009, -1.0315500000000009, -0.2694900000000002, 0.2031900000000001, 0.004680000000000045, -1.1005800000000001, -1.2222600000000008, -1.191840000000001, -1.522950000000001, -1.29714, -1.7277000000000016, -1.1567399999999997, -0.6493500000000003, -0.8392800000000002, -0.5939700000000001, 0.2722199999999994, -0.30108, -0.36894000000000005, -0.4215899999999998, -0.8673599999999997, -0.9005099999999995, -1.451579999999999, -1.1824800000000004, -0.4013099999999999, 0.08969999999999911, -0.06825000000000073, -0.4953000000000001, -0.55575, -0.5725200000000004], [0.0, 0.24101999999999713, -0.686010000000004, -0.5339100000000041, -0.8470800000000018, -1.334970000000005, -1.141530000000003, -0.7062900000000036, -1.1091600000000024, -1.7932200000000023, -1.7226300000000037, -0.9796800000000023, -1.1700000000000013, -1.2292800000000028, -2.1052200000000028, -1.0588500000000036, -1.752660000000004, -0.2585700000000042, -0.08424000000000298, -0.2476500000000028, 0.6380399999999975, -0.12753000000000192, -0.0035100000000030107, 0.0510900000000003, -0.26871, -0.13806000000000251, -0.41964000000000334, -0.050700000000003076, -0.29367000000000276, -1.1177400000000026, -1.3895700000000013, -1.33224, -1.3267800000000012, -1.5369900000000034, -0.9094800000000003, -0.18095999999999934, -0.25973999999999897, -0.12480000000000269, 0.4878900000000055, 0.5479499999999966, 0.4668299999999945, 0.2172299999999998, 0.2804099999999963, -1.0221900000000042, -0.9777300000000024, -0.24609000000000414, 0.22346999999999628, -0.13923000000000219, -0.3092700000000046, -0.47268000000000443, 0.45278999999999847, 0.1115400000000033, -0.3186300000000015, 0.42119999999999624, -0.04056000000000015, -0.0643500000000019, 0.562380000000001, 0.2269799999999993, -0.09516000000000213, -0.7148700000000026, -0.8513700000000011, -0.7191600000000022, -0.4832099999999997, -1.4032200000000001, -1.2920700000000003, -1.0034700000000014, -0.7515300000000056, -0.9196199999999983, -1.0085400000000022, -1.414140000000001, -0.7250100000000024, -0.3287700000000031, -1.2351300000000038, -1.194180000000003, -1.6438500000000014, -1.5093000000000023, -0.20202000000000497, 0.12830999999999593, -0.6579300000000008, 0.0409499999999956, -0.16224000000000016, -0.27261000000000335], [0.0, 0.35372999999999877, 0.895049999999999, 0.21371999999999636, -0.5112899999999989, -0.6633900000000046, -0.24023999999999868, -1.2897300000000018, -1.1337300000000003, 0.04406999999999672, 0.21059999999999746, -0.5561400000000036, -0.9843600000000028, -2.157870000000001, -2.557620000000001, -2.0416499999999997, -2.1566999999999963, -1.919579999999999, -0.835380000000002, -1.0701600000000018, -0.48750000000000426, -0.13884000000000318, 0.10724999999999829, -0.8611200000000006, -0.48009000000000324, -0.3712800000000014, -1.1009700000000016, -1.0912200000000012, -0.6583200000000038, -1.2339600000000024, -1.9375200000000006, -1.86381, -1.7674800000000035, -1.6793399999999998, -1.097070000000004, -0.7000499999999992, -1.2737399999999992, -0.7690800000000007, -0.2230799999999986, -0.5658899999999996, -0.707460000000002, -0.011700000000001598, 0.026909999999998435, -1.162980000000002, -0.7172100000000019, 0.06317999999999824, 0.021839999999998305, -0.3591900000000021, -0.7597200000000024, -0.016380000000002504, -0.40833000000000164, -0.38805000000000245, 0.09242999999999713, -0.18759000000000325, -0.482430000000003, -0.11544000000000176, 0.6099599999999981, 0.5167499999999992, -0.9828000000000015, -1.38021, -1.4632800000000046, -1.4937000000000005, -0.6969299999999987, -0.8587799999999994, -0.6821100000000029, -0.9118200000000014, -0.8895900000000037, -1.058070000000003, -0.4508400000000039, -0.48866999999999905, -0.7589400000000026, -0.5499000000000045, -0.3564600000000029, -0.13962000000000385, -0.7511400000000048, -0.7573800000000004, -0.8864700000000019, -0.6025500000000039, -1.2994800000000022, -0.7328100000000006, -1.3072800000000022, -1.2101700000000086], [0.0, -1.2238199999999986, -1.0666500000000005, -1.0346699999999993, -0.7605000000000001, -1.5424499999999992, -1.9550700000000014, -1.9733999999999972, -1.5997800000000004, -1.8162300000000013, -1.4765400000000022, -1.0592400000000026, -1.0292099999999986, -0.5947499999999991, -0.9305399999999985, -1.24059, -0.8853000000000016, -0.09086999999999901, -0.20748000000000089, -1.1898900000000001, -1.1048700000000005, -0.8030100000000006, -1.5518099999999992, -1.4816099999999972, -1.6742699999999995, -1.4839499999999992, -1.5159300000000036, -2.0513999999999997, -1.8404099999999999, -2.4909299999999983, -1.935570000000002, -1.3521300000000003, -0.7059000000000001, -1.32171, -1.2511200000000002, -1.0428599999999983, -0.08892000000000122, 0.4414800000000003, 0.6926399999999999, -0.0003899999999992243, 0.14312999999999987, 0.8310899999999973, 0.7273499999999987, 0.9890399999999993, 0.4301700000000003, 0.22814999999999946, -0.09867000000000004, 0.1236300000000004, 0.18174000000000023, 0.48593999999999965, 0.5225999999999995, 0.7328099999999997, 0.09555000000000002, -0.5666699999999986, -0.7507500000000004, -0.7035599999999996, -0.6431099999999993, -0.73476, -0.9207899999999986, -1.2499499999999997, -1.0951199999999979, -1.0896599999999999, -0.29561999999999944, -0.7682999999999996, -0.07449000000000017, 0.2531100000000002, -0.006630000000000136, -0.027300000000000102, -0.4485, -1.0374000000000003, -1.9488299999999987, -1.6122599999999987, -1.7288699999999984, -1.3497899999999992, -1.227720000000001, -0.95901, -1.1442599999999996, -0.36309000000000036, -0.36464999999999936, 0.20396999999999976, 0.19539000000000012, 0.31200000000000055], [0.0, 0.29133000000000164, 0.6438900000000021, 1.5611700000000024, 1.3232700000000013, 2.042820000000002, 1.9363499999999998, 1.8560100000000013, 1.498770000000003, 1.2066600000000003, 1.2035400000000047, 0.9804600000000039, 1.7370600000000012, 1.3271700000000015, 0.27261000000000024, 0.47619000000000256, 0.4941300000000006, 0.7870200000000032, 0.7289100000000004, 0.8568300000000022, 1.1918400000000027, 0.5541900000000006, 0.6259500000000013, 0.4215900000000006, 0.24180000000000312, 1.6087500000000006, 1.670760000000003, 0.7113600000000022, 0.236340000000002, -0.21839999999999815, 0.7729800000000018, 0.5296200000000004, 0.5799300000000023, 0.35490000000000155, -0.47150999999999854, 0.4325100000000024, 0.03666000000000258, 0.028080000000003658, -0.6606599999999991, -0.9804599999999999, -0.3841500000000009, -0.6302399999999979, -0.043289999999996276, -0.2718299999999978, 0.15132000000000367, 1.3088400000000036, 0.9750000000000028, 0.687960000000003, 0.6977099999999989, -0.17940000000000111, 0.15015000000000045, 0.7008300000000025, 0.9441900000000039, 0.20709, 0.11934000000000244, 0.33228000000000124, 0.3705000000000016, 1.1216400000000024, 0.5670600000000015, 0.3404699999999985, 0.04134000000000393, 0.059280000000002886, 1.5549300000000006, 0.9383400000000033, 0.4992000000000014, 1.5915900000000003, 1.974570000000004, 2.139540000000001, 1.5463500000000017, 1.4734200000000022, 0.8876400000000046, 2.106000000000001, 1.6996200000000037, 1.2160199999999999, 1.0030800000000015, 1.2795900000000016, 1.3131300000000028, 1.7261400000000013, 0.9192299999999998, 1.126320000000001, 1.1356799999999998, 1.8762900000000007], [0.0, 0.5764200000000006, 0.15834000000000037, -0.11076000000000041, -0.8681399999999984, -0.8810099999999994, -0.4746299999999992, -1.3178099999999993, -1.5170999999999994, -0.7456799999999988, -0.46175999999999906, -0.3876599999999992, 0.07527000000000061, -0.5799299999999987, -1.8002399999999985, -1.831049999999998, -1.6274699999999986, -0.6953699999999987, -0.9508199999999984, -0.9527699999999986, -1.0650899999999994, -0.1279199999999987, -0.6173699999999991, -0.7936499999999977, 0.24804000000000181, -0.15365999999999813, -0.7160399999999987, -1.044029999999998, -1.9109999999999991, -1.8158400000000001, -1.951949999999999, -1.5814499999999985, -1.3774800000000003, -0.9133800000000005, -0.6407699999999981, -0.236339999999998, 0.08657999999999966, 0.07215000000000149, 0.0538200000000022, -0.2460899999999966, 0.04290000000000482, 0.9379499999999994, 0.8814000000000033, 1.1680500000000031, 1.178189999999998, 0.10023000000000071, -0.5569199999999976, 0.06396000000000468, -0.2948399999999973, -0.13571999999999873, 0.5896799999999991, 1.0592400000000017, 0.532350000000001, -0.41066999999999787, -0.8209499999999996, -0.6473999999999998, 0.029640000000001, -0.16379999999999528, -0.2870399999999973, -0.23282999999999854, -0.299519999999998, -0.28196999999999783, -0.49217999999999695, -0.4289999999999985, -0.18446999999999658, 0.7772699999999997, -0.16574999999999784, 0.049530000000001184, -0.7846799999999996, -0.5896799999999978, -0.9321000000000002, -1.4983799999999994, -1.3291199999999994, -0.795599999999999, -0.4605900000000007, -0.8494199999999992, 0.386880000000001, 0.8353800000000016, 0.6290700000000014, 0.5658900000000036, 0.4469400000000028, 0.8767200000000024], [0.0, 0.41691000000000095, 0.7296900000000004, 0.65169, 0.4953000000000001, 0.1368900000000003, -0.9714899999999996, -2.1219899999999985, -2.30841, -0.8349899999999991, -0.411839999999999, -0.6590999999999988, -0.9348299999999986, -1.7202900000000012, -1.493700000000001, -1.3763100000000006, -1.1481599999999985, -0.7371000000000004, -0.8353799999999995, -0.7281300000000034, -0.5604300000000019, -0.3096599999999984, -0.41769000000000067, -0.02222999999999975, -0.3490500000000022, -0.3740099999999983, -0.5175299999999982, -0.5452199999999995, -1.1411400000000023, -0.8197799999999996, -1.4933099999999997, -0.6977099999999999, -1.15245, -1.1419200000000007, -0.7542599999999998, -0.5892899999999998, -0.8139300000000008, -0.8930999999999994, -0.9484799999999999, -0.2585700000000005, -0.2804099999999998, 0.67977, 0.7991099999999998, 1.0210200000000007, 0.78, 0.8388900000000002, 0.95238, 0.1618500000000005, -0.44771999999999934, -0.543659999999999, -0.8474699999999994, -0.26169, 0.38103000000000053, -0.051480000000000414, -0.07994999999999908, -0.06785999999999903, -0.34670999999999996, -1.3431600000000006, -1.000350000000001, -1.4890199999999991, -1.5178800000000026, -0.76947, -0.6899099999999992, -1.2830999999999997, -0.8381100000000011, -1.1571300000000004, -1.164149999999999, -1.1411399999999987, -1.7510999999999997, -2.0209800000000016, -2.09508, -2.288909999999996, -2.1719099999999982, -1.037789999999998, -1.027649999999999, -0.35216999999999843, 0.1384500000000004, 0.6181500000000001, 0.7932600000000005, -0.29757, -0.9831900000000019, -0.8829600000000003], [0.0, -0.19500000000000206, 0.3447600000000002, 0.3896099999999969, 0.07604999999999884, 0.3798599999999983, -0.20865000000000178, -0.5109000000000019, -0.30498000000000114, 0.7144800000000002, 0.7581599999999977, 0.5241599999999977, -0.04095000000000115, -0.522210000000001, -1.075230000000002, -0.8283600000000005, -0.12402000000000046, 0.1641899999999994, 0.4071599999999982, 0.21332999999999935, -0.6454500000000016, -0.7023900000000018, -0.40170000000000106, -0.33228000000000213, -0.00975000000000148, 0.553409999999998, -0.21723000000000092, -0.3018600000000009, -0.5924100000000005, -0.6392100000000005, -0.05460000000000065, -0.5612100000000015, 0.08033999999999852, -0.11388000000000176, -0.13611000000000084, 0.7757100000000003, 0.9543299999999968, 1.2308399999999995, 0.42743999999999915, 1.0533899999999987, 0.5822699999999987, 0.6493500000000003, 1.4235000000000009, 0.9742200000000001, 1.6259100000000017, 1.430519999999998, 1.0097099999999999, 1.5635099999999993, 0.7343699999999969, 0.7324199999999979, 1.2710099999999953, 0.9878699999999985, -0.2328300000000032, -0.5421000000000014, -1.074450000000001, -0.3315000000000008, 0.24842999999999926, 1.3728000000000005, 0.210989999999998, 0.04523999999999817, 0.08189999999999853, 0.11855999999999867, -0.6357000000000006, -0.12908999999999948, 0.7858499999999993, 1.2335699999999965, 0.8147099999999978, -0.014820000000001832, 0.10178999999999916, -0.3779100000000002, -1.3622700000000012, -0.8739900000000007, -1.1688300000000014, -1.3497900000000007, -0.8377200000000015, 0.18641999999999803, 0.7877999999999992, 1.5845699999999983, 0.81315, 0.8073000000000004, 0.29405999999999843, -0.5475600000000029], [0.0, -0.07410000000000228, 0.5202599999999955, 0.20318999999999932, 0.2449199999999978, 0.026909999999993328, -1.2811500000000051, -1.0744499999999966, -1.1762400000000084, -0.5885100000000052, 0.13220999999999572, 0.08423999999999943, -0.01404000000000627, -1.7031299999999976, -1.9484399999999966, -2.077140000000005, -1.7865899999999946, -1.0038600000000044, -1.0019100000000019, -0.9348300000000029, -0.15444000000000546, 0.06863999999999715, 0.3794699999999933, 0.22658999999999807, 0.5167499999999938, 0.30380999999999725, 0.18993000000000393, -0.1579500000000027, -1.0440300000000051, -1.6586700000000048, -0.999960000000002, -0.8599500000000009, -0.48905999999999983, -0.4894500000000028, 0.4110599999999942, 0.3853199999999979, -0.4009199999999997, -0.5187000000000004, -0.41028000000000064, 0.26675999999999966, -0.39546000000000303, 0.40520999999999674, 0.9008999999999978, 0.06825000000000081, -0.47814000000000023, -0.043290000000001605, -0.7757100000000032, -0.14391000000000354, -0.3549000000000029, 0.3080999999999947, 0.2940599999999991, 0.49256999999999973, -0.1669200000000055, 0.3818099999999971, 0.06590999999999791, -0.07605000000000084, 0.930149999999994, 1.0541699999999996, 0.21839999999999593, -0.12597000000000058, 0.43718999999999975, 0.530399999999998, -0.6267300000000025, -1.8509400000000054, -0.6271200000000037, -0.12440999999999924, -0.24960000000000226, -0.7519200000000033, -0.5226000000000037, -1.198860000000003, -1.1988599999999976, -1.5436200000000002, -1.5775499999999982, -1.2468299999999934, -0.5424900000000039, 0.12635999999999736, 0.12167999999999823, 0.7101899999999959, 0.4789199999999991, 0.16535999999999706, -0.3276000000000008, -0.22386000000000505], [0.0, -0.6306300000000002, -0.7491899999999998, -1.51905, -1.6426800000000021, -1.6953300000000007, -1.7990699999999995, -2.272139999999999, -1.1902799999999987, -1.2503399999999991, -1.9464899999999994, -1.790099999999999, -1.7526599999999992, -2.3442899999999995, -2.9632199999999997, -3.1391100000000023, -3.0143099999999965, -2.119649999999998, -1.2320100000000007, -0.6766499999999996, -0.5623800000000005, 0.062009999999999676, -0.5608199999999999, -0.59046, -0.23517000000000032, -1.0806900000000006, -1.74018, -1.9472700000000005, -1.9648199999999996, -1.2312299999999992, -1.25658, -1.39425, -1.06704, -1.1516699999999997, -0.9984000000000004, -0.7714199999999998, -1.2417599999999995, -1.05378, -1.304549999999999, -1.3267800000000003, -0.9913799999999994, -1.1060399999999995, -2.03697, -1.13763, -0.8466900000000002, -0.9847499999999998, -0.9313200000000006, -1.0803000000000003, -0.7897500000000002, -0.28860000000000013, -0.07877999999999952, -0.5077799999999989, -1.3634399999999998, -1.0958999999999999, -0.8817900000000006, -0.5526300000000004, -0.7694699999999999, -0.11894999999999956, 0.12674999999999825, -1.14426, -1.2129, -1.5182699999999996, -1.9355699999999998, -2.0358, -1.3127400000000002, -0.20942999999999895, 0.11076000000000008, -0.30380999999999997, -1.0179000000000002, -1.45119, -2.4164399999999997, -2.5720500000000013, -2.8820999999999986, -2.2659000000000016, -1.3583700000000003, -1.0627500000000003, -0.9059699999999998, 0.2753399999999998, -0.0943799999999998, -1.23435, -1.3950299999999998, -1.5989999999999993], [0.0, -0.030030000000000445, -0.5600399999999983, 0.08930999999999956, 0.08462999999999732, -0.9831900000000007, -0.5331299999999988, -0.1353300000000015, -1.2710100000000024, -0.9535500000000001, -1.7113200000000026, -1.9991399999999995, -1.388010000000002, -1.528409999999999, -1.5771599999999963, -1.2522900000000037, -0.4360200000000012, 0.026519999999999433, -0.19227000000000127, -0.25116000000000116, -0.5190900000000018, -1.4476799999999999, -1.108380000000001, -1.303770000000003, -0.8525400000000045, -0.40793999999999975, -0.43173000000000106, -0.0027300000000027858, -0.015209999999999502, -0.09360000000000168, 0.41574000000000044, 0.31745999999999985, 0.2733899999999987, -0.3510000000000011, -0.66456, 0.005849999999999911, -0.37128000000000116, -0.05616000000000221, -0.6766500000000002, -0.9527700000000017, -2.061540000000001, -2.1957000000000013, -1.11813, -0.8342100000000003, -1.099020000000001, -0.49062000000000094, 0.06162000000000023, -0.7534799999999995, -0.039390000000000924, 0.035490000000000466, 0.5545799999999979, 0.7994999999999994, 1.04013, 0.9469199999999994, 0.9223500000000012, 0.3794699999999991, 0.08462999999999732, 0.4726799999999982, 0.06708000000000025, -0.5175300000000014, 0.4777499999999997, 0.9047999999999994, -0.16224000000000127, -0.8279700000000008, -0.7183800000000005, -1.1450400000000005, -0.7534800000000017, -0.9555000000000027, -0.9878700000000011, -1.1216399999999982, -0.8201699999999998, -1.00113, -1.1766299999999987, -1.1622000000000037, -0.9644700000000006, -0.2874300000000021, 1.1629799999999997, 1.5884700000000003, 1.20159, 0.3463199999999993, -0.296010000000001, 0.6762599999999996], [0.0, 0.9742200000000008, 0.16887000000000074, -0.01599000000000128, 0.3697199999999994, 0.02457000000000109, 0.7796099999999997, -0.6801599999999957, -0.7211099999999984, -0.7764899999999957, -1.4901899999999946, -1.5061799999999985, -1.7639700000000003, -1.598610000000001, -1.2846600000000004, 0.06825000000000014, 0.11583000000000365, 0.3045899999999997, 0.0721499999999986, 0.825629999999999, 1.2632100000000015, 0.8646300000000002, 0.9909900000000009, 0.4442100000000002, 0.7757100000000001, 0.3779100000000013, -0.3642600000000005, -0.4559099999999987, 0.018719999999999404, 1.049880000000001, 1.5580500000000002, 0.9496500000000001, 2.0634900000000003, 1.366950000000001, 1.284270000000001, 0.7039499999999996, 0.6415500000000007, 1.272180000000001, 0.7651800000000004, -0.30693000000000237, 0.11543999999999999, -0.051870000000000305, -0.420419999999998, -0.47891999999999935, -0.4305599999999987, 0.26520000000000143, 0.3650400000000009, 1.0970700000000007, 0.4098900000000023, 0.874380000000001, 1.4632800000000001, 1.7280900000000006, 1.4402700000000004, 1.1204700000000014, -0.002729999999998567, -0.23360999999999987, 0.24492000000000025, 0.7269600000000007, 0.15483000000000158, -0.2733899999999989, -0.08345999999999898, -0.051479999999999526, 0.68991, 0.20553000000000154, 0.7967700000000004, 1.39698, 1.8099900000000007, 1.2944100000000005, 0.6189300000000011, 0.44031000000000065, 0.32291999999999965, -0.38258999999999577, -1.6251299999999989, -2.012010000000002, -0.6727500000000008, 0.8186099999999996, 1.3345800000000003, 2.475720000000001, 1.8045300000000002, 0.7881900000000024, -1.1641499999999991, -0.7386600000000014], [0.0, 1.0030800000000002, -0.4130099999999999, 0.3283800000000019, -0.13298999999999772, -1.4738100000000083, -0.9469200000000013, -0.1084199999999953, -0.21605999999999526, -1.025699999999996, -0.4625399999999935, 0.0951600000000008, -0.1634099999999945, -0.16106999999999339, -0.1844700000000028, -1.5272399999999902, -0.6076199999999927, -0.39273000000000025, 0.19344000000000072, 0.42939000000000593, 1.0701599999999996, -0.11348999999999787, -0.9122099999999946, -0.1263600000000018, -0.23283000000000342, -0.356459999999994, -0.11660999999999877, -0.12986999999999949, 0.0908699999999989, 0.36504000000000403, 0.6555899999999992, 0.3295499999999958, 0.05811000000000188, -0.6473999999999958, -0.5853899999999959, -0.5405400000000009, -0.8361599999999951, -0.34554000000000773, -0.8903699999999937, -1.4757599999999949, -1.6613999999999942, -2.193359999999995, -1.2214799999999943, -1.0038600000000013, -0.2281499999999994, 0.5237700000000043, 0.3510000000000062, 0.3233100000000064, -0.2339999999999982, 0.9145500000000055, 1.116180000000003, 0.7129199999999996, -0.23087999999999909, 0.41612999999999545, -0.14702999999999466, -0.31628999999999685, -0.42314999999999525, -0.5350800000000016, 0.5440499999999977, 0.23555999999999688, -0.22463999999999817, 0.6158100000000015, -0.4399199999999972, -0.08501999999999743, 0.4387500000000015, 0.7359300000000006, 0.7538700000000009, -0.23204999999999565, -0.40989000000000075, -0.37206000000000117, -1.371239999999995, -1.4578199999999963, -1.4012699999999993, -0.937949999999991, -0.5502899999999995, 0.3677699999999975, 0.5573100000000011, 0.5970899999999988, 0.6797700000000066, 0.4325100000000006, 0.10451999999999995, 0.11037000000000496], [0.0, 0.011310000000002152, -0.3190199999999984, -0.3841499999999988, -0.25076999999999877, 0.1813500000000019, -0.43016999999999905, -0.3970199999999991, -0.1232399999999988, -1.283099999999999, -0.5795399999999967, -0.8088599999999968, -0.4270499999999978, -1.1134499999999992, -0.9293699999999986, -0.8856900000000004, -0.6364799999999982, -0.7363199999999988, -0.037049999999998695, 0.6977100000000017, 1.2639900000000024, 0.9956700000000008, 0.6583200000000012, -0.26324999999999793, -0.5639399999999981, -0.2609099999999985, -0.20045999999999858, -0.8080799999999984, 0.792870000000001, 0.73788, 0.6493500000000013, 1.279980000000002, 0.5912400000000017, -0.4258799999999987, -0.6512999999999984, -0.7433399999999986, -1.1114999999999986, -1.2737399999999983, -1.4917499999999988, -1.4695199999999982, -1.2437099999999983, -0.4656599999999981, 0.0686400000000007, 0.11349000000000264, 0.2562300000000012, 0.1680900000000013, 0.6337500000000021, 1.3821600000000012, 1.1727300000000027, 1.3806000000000016, 1.5381600000000009, 1.6099199999999994, 1.6762200000000012, 1.5810600000000012, 0.9742200000000004, 0.18291000000000146, -0.4492799999999988, 0.06825000000000148, 0.13806000000000085, -0.0319799999999989, -0.7199399999999988, -0.02573999999999932, 0.21021000000000156, -0.6243899999999982, -0.0503099999999983, 0.9168900000000014, 1.0541700000000005, 0.9711000000000033, 1.0331100000000015, 0.1388400000000013, -0.6317999999999984, -1.7733299999999974, -1.9882199999999997, -1.2008099999999988, -0.5744699999999986, 0.009360000000000812, -0.6282899999999982, 0.5257200000000012, -0.20630999999999844, 0.19266000000000094, 0.1821300000000008, 0.3755700000000016], [0.0, -0.32565000000000044, -0.39038999999999113, -0.9983999999999948, -1.2277199999999917, -0.9578400000000009, -0.28235999999999795, 0.019500000000002515, -0.6349199999999957, -0.2749499999999978, -0.8439600000000009, -0.7090199999999998, -1.3798199999999952, -1.3298999999999968, -1.753439999999996, -1.434809999999997, -1.318589999999995, -0.40949999999999864, -0.17901000000000256, -0.5846099999999961, -0.37010999999999594, 0.44616000000000344, 0.5764200000000037, 0.03939000000000181, 0.4313399999999996, -0.18212999999999457, -0.2687100000000031, -0.1606799999999975, -0.048360000000000625, -0.13689000000000195, 0.03315000000000268, 0.13533000000000506, 0.11583000000000254, -0.5186999999999999, -0.7214999999999989, -0.38298000000000076, -0.4945199999999952, -0.5245499999999952, -1.031159999999998, -0.1138799999999991, -0.5693999999999972, -1.155569999999999, -0.9722699999999973, -0.9640799999999983, -0.10101000000000049, -0.10373999999999572, -0.4672199999999913, -0.003119999999996459, 0.017160000000001396, 0.939900000000002, 0.1860299999999997, 0.7640100000000025, 0.44187000000000065, 0.2753400000000026, -0.7441199999999917, -0.3240899999999973, -0.47150999999999854, -0.5705699999999947, -0.12089999999999801, 0.019890000000001073, 0.24141000000000012, -0.07877999999999652, -0.08774999999999622, -0.026129999999996656, -0.0924299999999949, 0.9746100000000015, 0.444990000000002, -0.4141799999999929, -0.3743999999999996, -0.3529499999999972, -0.4297800000000045, -1.5338699999999923, -1.2827099999999918, -1.6723199999999983, -1.240589999999993, -1.3279499999999915, -0.3927299999999976, 0.15678000000000303, 0.36465000000000547, 0.029640000000005884, 0.20826000000000278, -0.8895900000000019], [0.0, 0.22230000000000016, -0.0928199999999999, 0.34046999999999983, 1.0424699999999996, 0.6388199999999997, 1.0865399999999994, 0.6216599999999992, 0.014429999999999055, -0.2585699999999982, -0.5440500000000013, -0.3646499999999986, 0.18603000000000047, 0.40910999999999975, 0.01443000000000072, 0.25427999999999995, 0.6130799999999998, 0.89349, 1.9168500000000004, 2.51511, 1.9636499999999995, 1.4823900000000005, 1.56819, 1.11384, 0.9086999999999998, 0.6977100000000003, 1.1111099999999998, 0.5826600000000005, 0.31745999999999996, 1.0607999999999997, 1.9535099999999996, 1.9581899999999999, 1.2920699999999998, 1.0077599999999998, -0.41379000000000055, 0.25271999999999983, -0.22698000000000018, -0.7519199999999999, -0.38804999999999956, 0.23985000000000012, -0.5112899999999998, -0.34086000000000016, 0.77454, 1.1434799999999992, 1.4671799999999995, 2.0716800000000006, 2.1921900000000005, 2.767830000000001, 2.6157300000000006, 2.5053599999999987, 3.1149299999999984, 2.5993499999999985, 1.6676400000000005, 1.7573400000000006, 1.0771799999999998, 0.9710999999999995, 0.48944999999999933, 0.2952300000000003, 0.5654999999999997, 0.6696299999999995, 1.2468300000000003, 1.4636699999999998, 0.4711200000000005, 0.3143399999999994, 0.7573799999999995, 0.8704800000000005, 1.2799799999999997, 1.12242, 1.1742899999999992, 0.5385899999999998, -0.1450800000000001, -1.3544699999999985, -1.815449999999997, -1.478100000000002, -0.6520800000000004, 0.7881899999999996, 1.7339400000000007, 1.6274699999999998, 1.8177899999999994, 1.883310000000001, 2.0560799999999992, 1.4157000000000006], [0.0, -0.7640100000000007, -0.8973899999999984, -0.8618999999999981, -1.1388000000000007, -0.27495000000000047, -0.02534999999999976, 0.08228999999999975, -0.49880999999999864, -1.220700000000004, -1.0491000000000028, -0.20826000000000056, -0.21411000000000047, -0.23594999999999833, -0.28119000000000094, -0.5015400000000003, -0.743730000000002, -0.4044299999999985, 0.04445999999999861, 0.3229200000000001, 0.10529999999999906, 0.17120999999999964, 0.42704999999999993, 0.3646499999999997, -0.00038999999999900226, -0.5241599999999984, -0.30263999999999913, 0.44772000000000045, 0.24569999999999914, 1.2710100000000004, 1.2702300000000002, 0.47033999999999987, 0.8852999999999995, 0.7917000000000007, -0.4215900000000008, -0.8447400000000012, -0.9691499999999991, -1.3989300000000013, -1.3006500000000014, -1.2320100000000003, -1.0791300000000015, -0.4839900000000017, -0.30575999999999826, -0.007800000000000251, 0.4137900000000002, 0.17510999999999965, -0.18720000000000026, 0.24297000000000146, 0.511679999999999, 0.4758000000000009, 0.7199400000000004, 0.9005100000000001, 1.49487, 1.0494900000000005, 0.6279000000000002, -0.05810999999999744, -0.1735500000000012, 0.5850000000000003, 0.24726000000000026, -0.5506799999999996, -0.0678600000000007, 0.55068, -0.039390000000000036, -0.7101900000000012, 0.19694999999999951, -0.1903199999999976, -0.47540999999999944, 0.0019499999999994522, 0.14859000000000022, -0.48945000000000083, -0.5877300000000005, -1.2074400000000014, -1.2714000000000043, -1.6906499999999993, -1.5342599999999993, -0.9613499999999999, -0.6871800000000001, -0.4200299999999988, -0.31511999999999873, 0.2304899999999992, 0.6099600000000004, 0.005459999999999354], [0.0, -0.8540999999999976, -0.58812, -0.8279699999999997, -0.14898000000000056, 0.43289999999999984, 0.23244000000000042, 0.049140000000000184, -0.904799999999998, -0.1294800000000016, 0.1368899999999993, 0.36620999999999926, 0.7487999999999976, 0.40482000000000107, -0.12675000000000036, -0.38766000000000367, -0.8279700000000014, 0.15912000000000082, 0.6462300000000013, 1.159470000000001, 1.3728000000000007, 0.859170000000001, 1.3221000000000003, 1.2741300000000009, 0.20436000000000054, -0.0046799999999997954, -0.04563000000000028, 0.06435000000000013, 1.19652, 1.2971400000000004, 1.3505700000000007, 0.5272800000000013, 0.8638500000000019, 0.11505000000000076, -0.7694700000000001, -0.30653999999999804, -0.71916, -1.4188199999999975, -0.9254699999999993, -0.5432699999999988, 0.8958300000000008, 1.2721800000000014, 1.5927600000000004, 1.6918200000000008, 1.2975300000000012, 1.0818600000000003, 1.1165700000000007, 1.1274900000000008, 0.8256299999999999, 0.7437300000000006, 1.62552, 1.1337300000000001, 1.155180000000001, 0.8205599999999993, -0.19889999999999985, -0.45551999999999726, 0.09906000000000037, 0.0038999999999991264, -0.025350000000000206, 0.1598999999999997, 0.6380400000000014, 0.19188000000000138, 0.5697900000000002, 0.1606799999999995, 0.20747999999999878, 0.016380000000000505, 0.17511000000000032, -0.18602999999999925, 0.49647000000000086, 0.3213599999999994, -0.745289999999998, -1.1801399999999989, -1.7179500000000023, -1.7152200000000022, -0.9886499999999963, -0.6290700000000014, -0.45591000000000115, 0.017549999999999732, 0.3697200000000007, 0.48984000000000005, 1.5522000000000011, 0.9297600000000005], [0.0, 0.47190000000000065, -0.33071999999999857, -0.8973899999999935, -0.8509799999999945, 0.5912399999999973, 1.214460000000002, 1.010489999999999, 1.1037000000000075, 0.8209500000000025, 0.7698599999999991, 0.822900000000002, 0.7784400000000007, 0.1513200000000019, 0.3116100000000075, -0.14859000000000133, 0.6969299999999996, 0.8626800000000006, 0.19500000000000073, 0.4972500000000064, 1.2413700000000047, 1.7234100000000026, 1.5950999999999995, 0.9402900000000001, 0.5986500000000015, 1.6313700000000013, 2.155140000000002, 2.1364200000000024, 1.5042300000000024, 0.917280000000003, 1.6344900000000013, 1.7901000000000025, 1.0553399999999966, 0.4578600000000064, 0.3404700000000007, 0.3276000000000008, 0.15249000000000024, 0.40560000000000196, -0.17276999999999987, 0.530009999999999, 0.3205799999999992, 0.48789000000000327, 0.29717999999999956, 0.820170000000001, 0.5261100000000001, 0.6357000000000008, 0.8462999999999989, -0.12557999999999758, 0.32603999999999944, -0.4356300000000024, 0.089310000000002, 0.17939999999999978, 0.6173700000000006, 0.9110400000000038, 0.4473300000000031, 0.4368000000000021, 0.04719000000000051, 0.19383000000000195, 0.24959999999999827, 0.11232000000000397, 0.7234500000000037, 1.1707800000000033, 1.1083800000000013, 0.8291400000000011, 0.5323500000000045, 0.9863100000000027, 0.8232899999999983, 0.7304700000000026, 1.1076000000000006, 1.06977, 1.2304500000000003, 0.4512300000000016, 0.024179999999999424, 0.28898999999999964, -0.503879999999997, -0.8423999999999952, -0.8891999999999944, 0.2386800000000009, 0.3213600000000021, 1.187939999999998, 1.111500000000004, 0.8529300000000024], [0.0, -1.5034499999999928, -1.5869099999999925, -1.065869999999995, -1.1867699999999939, -1.9262099999999918, -2.3906999999999927, -2.673839999999993, -2.2873499999999924, -1.8903299999999925, -1.7897099999999928, -2.0634899999999914, -2.1414899999999957, -2.124719999999997, -1.9648199999999938, -2.333369999999994, -2.5946699999999954, -2.4495899999999957, -1.5369899999999888, -0.971489999999994, -1.109159999999994, -1.1044799999999944, -1.4160899999999934, -1.4309099999999928, -2.374709999999993, -3.322409999999994, -2.671109999999992, -1.759289999999989, -1.2226499999999954, -1.0951199999999934, -1.2885599999999933, -0.8646299999999911, -0.6029399999999923, -1.9418099999999927, -2.687489999999992, -2.7011399999999934, -2.6087099999999888, -2.5915499999999945, -1.5038399999999914, -1.2086099999999984, -0.4976400000000014, -1.1446499999999942, -1.9246499999999913, -2.270969999999994, -2.603249999999993, -1.8037499999999937, -2.014349999999993, -1.5872999999999928, -2.0857199999999922, -1.3236599999999914, -1.1337299999999946, -0.9781199999999934, -0.7893600000000012, -1.091609999999994, -1.7585099999999914, -2.3996699999999955, -2.856359999999995, -2.865329999999995, -2.5814099999999924, -2.1438299999999932, -0.89855999999999, -1.0151699999999986, -1.0210199999999903, -1.5443999999999942, -1.8688799999999923, -1.9975799999999917, -1.4437799999999923, -1.8731699999999898, -2.2031099999999944, -2.2155899999999886, -3.2736599999999956, -3.8083499999999946, -3.9861899999999926, -4.272449999999993, -3.8001599999999938, -3.387149999999995, -3.239729999999995, -1.7585099999999927, -1.9667699999999928, -2.1703499999999925, -2.8778099999999958, -1.8950099999999943], [0.0, -0.03627000000000069, -0.6208800000000008, -0.3237000000000003, 0.1634099999999996, 0.2714400000000017, 0.6922500000000007, 0.9266400000000015, 0.028860000000000108, -0.12480000000000202, 0.26987999999999857, 0.7394400000000017, 0.5787599999999979, 0.10959000000000318, 0.46838999999999786, 0.16496999999999873, -0.3237000000000003, 0.35606999999999966, 0.7952099999999993, 1.1649299999999994, 1.2156299999999993, 1.1485499999999977, 0.8264100000000003, 0.7378799999999999, 0.8252400000000006, 0.4968600000000032, 0.7043399999999982, 0.8345999999999985, 1.21602, 1.6036800000000004, 1.2121200000000008, 1.4449499999999988, 0.87165, 0.8065199999999983, 0.6126900000000008, 0.8579999999999985, -0.008969999999999922, -0.7382699999999993, 0.023400000000002086, -0.45786000000000215, -0.45318000000000125, -0.022230000000001082, 0.3763499999999993, 1.119299999999998, 1.0373999999999997, 0.42080999999999924, -0.6470100000000016, -0.648960000000002, -0.07878000000000185, -0.29288999999999876, -0.7807799999999991, -0.14508000000000187, 0.16964999999999963, -0.8626800000000014, -2.0244900000000006, -1.294410000000001, -0.5631600000000014, -0.7776600000000002, -0.18057000000000367, -0.78468, -0.09711000000000047, 0.6208799999999999, 0.3170699999999995, 0.7897500000000008, 0.4368000000000014, 0.6633899999999995, 0.7226699999999953, -0.44148000000000054, -0.24531000000000147, 0.24608999999999814, -0.13299000000000016, -0.5994299999999997, -0.24881999999999938, -0.7117500000000005, -1.5752100000000009, -1.6984500000000011, -1.9168499999999993, -1.5132000000000003, -0.5518500000000004, -0.7745400000000016, -0.6080099999999995, -1.0042499999999972], [0.0, -1.6278599999999992, -1.7027399999999986, -2.257319999999998, -3.363749999999998, -3.0299099999999983, -2.4242399999999984, -2.4464699999999993, -2.3392199999999974, -3.013139999999998, -3.0197699999999976, -2.569319999999998, -2.1995999999999967, -1.91256, -1.679339999999998, -1.8501599999999985, -1.836509999999997, -1.5404999999999984, -1.6613999999999978, -1.87707, -1.9371299999999985, -2.0400899999999984, -1.9960199999999988, -1.6606199999999975, -2.4070799999999983, -2.5073099999999977, -1.869269999999997, -1.7858099999999992, -1.6169399999999987, -2.3743199999999978, -1.8989099999999979, -2.2678499999999984, -2.164889999999998, -1.5619499999999982, -1.2834899999999978, -2.5073099999999977, -2.103659999999998, -1.768649999999997, -1.3029900000000008, -1.5276299999999994, -1.6610099999999979, -2.0412599999999976, -2.515889999999999, -3.1991699999999983, -2.832959999999999, -2.872739999999998, -3.2350499999999975, -2.788109999999998, -1.7725499999999967, -2.101709999999996, -2.524079999999998, -2.0287799999999985, -2.116139999999999, -2.8809299999999984, -2.555279999999999, -2.3715899999999976, -2.821259999999999, -2.713619999999998, -2.0092799999999977, -1.614209999999999, -1.2616499999999968, -1.5564899999999966, -2.0802599999999964, -1.5354299999999985, -2.120429999999997, -2.2007699999999986, -2.2475699999999996, -2.6219699999999992, -2.1383699999999974, -2.4484199999999965, -2.329469999999996, -2.148119999999998, -2.918369999999998, -2.112239999999999, -2.9979299999999984, -3.0357599999999985, -3.0794399999999977, -2.8286699999999976, -1.9714499999999984, -2.8356899999999987, -2.7927899999999974, -2.2292399999999977], [0.0, -0.2691000000000005, -0.9652500000000006, -1.0748400000000007, -0.83928, -0.8037899999999998, -0.46020000000000033, 0.29444999999999966, 0.1021799999999995, 0.08540999999999888, 1.0962900000000002, 0.40638000000000063, 0.8583899999999983, 0.8416200000000001, 0.48009, 0.39272999999999936, 0.7374899999999996, 0.2382900000000001, 0.3123899999999994, 0.0538199999999992, 0.08852999999999978, 0.22854000000000008, 0.20826000000000033, 0.4945200000000002, 1.02882, 1.5518099999999992, 0.6294599999999989, 0.2141100000000007, 0.3155100000000003, 0.8162700000000015, 0.8033999999999996, 0.6606599999999995, 0.33501000000000036, 0.5959200000000019, 0.38922000000000034, -0.06630000000000014, 0.028079999999999883, 0.4582500000000004, -0.12987000000000015, 0.31355999999999984, 0.6013799999999999, 0.7585499999999997, 0.40481999999999996, 0.3049800000000006, 0.263639999999999, -0.3100499999999999, -0.9047999999999998, -0.38376000000000043, -0.10530000000000017, -0.5842200000000003, -0.11933999999999939, 0.5233799999999985, -0.0023399999999997867, -0.4820400000000006, -0.60138, -0.55224, -0.3903899999999995, -0.41106000000000015, -0.5787599999999998, -1.0003499999999999, -0.10569, 0.24921000000000038, 0.4114500000000012, -0.09438000000000052, 0.6279000000000002, 0.5779799999999987, -0.05499000000000043, 0.38766000000000056, 0.7675199999999994, 0.7300799999999997, 0.647400000000001, 0.3022499999999997, 0.04290000000000116, 0.009359999999999813, 0.13766999999999907, 0.2644200000000001, -0.054210000000000536, -0.09867000000000031, -0.0717600000000006, -1.0093200000000002, -0.7035600000000006, -1.03233], [0.0, -0.865410000000002, -0.9254700000000036, -2.668770000000003, -2.143830000000002, -1.419600000000003, -1.6961100000000018, -1.4554800000000034, -1.8408000000000024, -1.6255200000000027, -1.538160000000004, -0.8970000000000034, -1.3513500000000032, -0.7433400000000023, -0.1883700000000026, -0.0019500000000052253, -0.6540300000000023, -1.2967500000000032, -0.7523100000000018, 0.5631599999999986, 0.08969999999999567, 0.6871799999999966, -0.04797000000000429, -1.150110000000003, -1.1025300000000042, -1.145040000000005, -1.261650000000003, -1.1813100000000025, -1.5642900000000033, -1.3895700000000022, -0.7881900000000022, -0.875940000000005, -0.863460000000003, -0.6177600000000036, -0.5319600000000011, -0.6513000000000022, -0.8170500000000007, -0.5920200000000047, -1.4761500000000007, -1.3248300000000033, -1.1544000000000028, -1.9632600000000031, -2.5658100000000026, -2.772120000000003, -3.582930000000003, -2.7861600000000024, -2.4258000000000024, -1.9698900000000024, -1.9441500000000027, -1.258140000000003, -1.3068900000000032, -0.9137700000000051, -1.2269400000000037, -1.4699100000000034, -1.1337300000000035, -1.2916800000000026, -1.3045500000000028, -0.9079200000000032, -0.40560000000000107, -0.18915000000000015, -0.10218000000000149, 0.038219999999995924, -0.8583900000000038, -1.1029200000000017, -1.1590800000000028, -0.7702500000000041, -0.7187700000000041, -1.6177200000000027, -1.7858100000000032, -1.9488300000000018, -1.9468800000000026, -1.7031300000000025, -1.9125600000000023, -2.650440000000003, -2.7475500000000026, -1.9250400000000032, -1.5186600000000043, -2.0194200000000038, -2.2737000000000025, -2.9273400000000027, -2.1777600000000024, -2.060370000000003], [0.0, -0.0900899999999997, -0.9094799999999987, -1.1828700000000008, -1.2760799999999985, -2.1446099999999997, -0.960569999999999, -0.94965, -1.6138199999999987, -0.9227399999999994, -0.67509, -1.1426999999999996, -0.9445799999999982, -0.668849999999999, -0.30888000000000104, -0.4652700000000001, -0.73827, -0.7324199999999994, -0.40286999999999956, -0.29093999999999937, 0.21255000000000102, 0.7101899999999995, 0.43992000000000053, 0.6126900000000002, 0.5124600000000006, -0.04563000000000095, -0.289379999999999, 0.0659100000000003, -0.6368699999999996, -0.9262499999999992, -0.30770999999999954, 0.2480399999999997, 0.019500000000000572, -0.6524699999999988, -0.0483599999999994, -0.33032999999999946, -0.3997499999999993, -0.6668999999999996, -1.3880099999999995, -1.0288199999999992, -1.1329499999999997, -1.4886299999999992, -1.7323799999999996, -1.3349699999999993, -1.6442399999999995, -1.5404999999999998, -1.5576599999999985, -2.0669999999999984, -1.7928299999999995, -1.3384800000000006, -0.5900699999999993, -0.776099999999999, -0.5245499999999992, -1.40673, -1.3954199999999992, -1.3829399999999996, -1.29831, -1.9043700000000001, -1.3314599999999994, -0.6372599999999995, -0.8228999999999996, -0.6879599999999999, -0.5257199999999993, 0.20318999999999976, -0.10997999999999966, -0.5374199999999995, -0.5838299999999992, -0.5362499999999997, -1.4414399999999996, -1.0253100000000006, -1.0713299999999994, -0.7913099999999995, -1.9780799999999998, -1.3029899999999999, -1.3919099999999998, -1.2682799999999976, -0.70551, -1.0155599999999994, -1.3977600000000003, -1.827539999999999, -1.7518799999999994, -1.9394699999999987], [0.0, 1.4535300000000007, 1.2554100000000004, 0.48515999999999976, -0.790139999999998, -1.5116400000000016, -1.44339, -0.5576999999999998, -0.6278999999999996, -0.48243000000000114, -0.08736000000000022, -0.9164999999999984, -1.7199000000000013, -0.5413199999999999, 0.6161999999999997, 1.6368300000000002, 0.32876999999999923, 0.6473999999999995, 0.7683000000000002, 0.6973199999999986, 0.5869499999999997, 0.6138600000000004, 0.18251999999999996, 0.5896799999999998, 0.1286999999999996, -0.2577900000000003, -0.28274999999999995, 0.27494999999999953, -0.10842000000000085, -0.10959000000000019, 0.5549700000000001, 1.14504, 1.3224899999999997, 0.7109699999999997, 0.2924999999999996, 0.10412999999999961, -0.042119999999999824, 0.47462999999999944, 0.0850199999999997, -0.1618500000000006, -0.6883500000000001, -1.1153999999999997, -0.7963800000000024, -1.409460000000002, -1.8279300000000012, -1.4960400000000003, -2.0408700000000013, -1.705469999999997, -1.4613300000000002, -1.1879400000000007, -1.5876899999999998, -1.3868400000000003, -1.30104, -1.7144400000000002, -1.1271000000000009, -1.2671100000000006, -0.152100000000001, 0.7562099999999999, -0.08463000000000032, 0.028470000000000106, 0.2999099999999997, 0.6918599999999991, 0.65676, 0.21138000000000018, -0.47228999999999954, 0.3084899999999997, -0.015210000000000057, 0.11348999999999909, -0.507390000000001, -0.5105099999999997, 0.007409999999999806, -0.5709600000000002, -0.4371900000000003, -1.2850499999999991, -1.230840000000002, -0.7226699999999991, -0.8657999999999987, -0.7675199999999996, -0.7016100000000008, -0.08696999999999999, -0.9165000000000002, -0.6048900000000007], [0.0, -0.61074, -1.5607800000000005, -1.2105599999999999, -1.3146899999999992, -2.1645000000000003, -1.388399999999999, -1.4769299999999987, -1.0892699999999997, -0.7671300000000001, -1.1060400000000015, -1.363050000000002, -1.2261600000000008, -0.34631999999999985, -0.17082000000000022, 0.17861999999999972, 0.24218999999999985, 0.30068999999999996, 0.2597399999999999, 0.4605900000000002, 0.31239000000000045, 0.3942900000000002, 0.42314999999999986, 0.40286999999999934, -0.5342999999999999, -0.33306, -0.92625, -0.28352999999999984, 0.6938100000000003, -0.30263999999999996, -0.5015399999999997, -0.6692400000000003, -0.29873999999999973, 0.061620000000000175, -0.15443999999999963, -0.08853000000000008, -0.6165899999999997, -0.3743999999999997, -0.3833700000000002, -0.7218899999999999, -1.16922, -1.6532100000000016, -1.8181799999999988, -1.9683300000000001, -1.2359100000000003, -0.9028499999999999, -1.1208600000000002, -1.87005, -1.5982199999999986, -1.1251500000000003, -1.9609200000000004, -1.4925300000000001, -0.8595600000000003, -1.0764, -1.4231099999999999, -1.5849600000000008, -0.6458399999999997, -0.50817, -1.3174199999999996, -1.5276299999999998, -0.7550400000000004, -0.45396000000000003, -0.9071400000000003, -0.3127799999999996, -0.37751999999999963, 0.2160599999999983, 0.17901000000000006, -0.5510699999999998, -0.4321199999999997, -0.6719699999999993, -1.0962900000000009, -1.8887700000000005, -1.2850500000000002, -0.4633199999999996, -0.8248499999999999, -0.8646300000000011, -0.6552000000000007, -0.9383400000000002, -0.8470800000000005, -0.4492799999999998, -1.617720000000001, -1.0842], [0.0, 0.8517599999999999, 0.38960999999999996, -0.2051400000000001, -0.09204000000000039, 0.6165900000000011, 0.5502899999999997, 0.8790599999999995, 0.08735999999999938, -0.08424000000000006, -0.641550000000001, 0.07683000000000001, -0.026910000000000295, -0.021450000000000635, 1.2109499999999995, 1.2320099999999996, 0.8650199999999997, 0.7718099999999997, 0.9519899999999992, 0.7000500000000001, 0.9320999999999997, 0.21098999999999962, -0.29484000000000044, -0.006629999999999997, -0.31628999999999996, 0.5054399999999992, 0.26988000000000045, 0.374399999999999, -0.3006900000000002, -1.27179, -0.44343000000000077, 0.16574999999999984, 0.48632999999999954, 0.06747000000000009, 0.8720399999999993, 0.11270999999999964, 0.4024799999999992, -0.8716500000000011, -0.64506, -0.16925999999999986, -0.4672199999999999, -1.3057200000000013, -1.16103, -0.9297600000000013, -1.4940900000000006, -0.9761700000000002, -1.2429300000000003, -0.9508200000000004, -0.40248000000000017, 0.6376499999999992, 0.11621999999999999, -0.09009000000000027, 0.25583999999999957, -0.11778000000000054, 0.08189999999999992, 0.24296999999999996, 0.06434999999999991, -0.4270500000000004, -0.7636199999999997, -0.37829999999999997, -0.5214300000000001, -0.20241000000000015, 0.2956199999999994, 0.29639999999999905, 0.2733899999999996, 0.6431099999999998, -0.033929999999999905, -0.26403000000000015, -0.13767000000000013, 0.40910999999999936, 0.38921999999999884, 0.12596999999999953, -0.37674000000000013, -0.3431999999999999, -0.8911500000000003, -1.3525199999999997, -0.79599, -0.6540300000000001, -0.6692399999999997, -0.9750000000000005, -0.8349900000000006, -0.7378800000000003], [0.0, -0.3712800000000003, -0.8638500000000007, -0.7094100000000003, -1.54752, -2.319329999999999, -1.6512600000000004, -1.4745900000000007, -1.3170300000000004, -1.1169600000000008, -1.3646099999999999, -2.0478899999999998, -2.01942, -1.1341200000000005, -0.27300000000000046, 0.04212000000000016, 0.17081999999999886, -0.43446000000000085, -0.22346999999999972, 0.39000000000000057, 0.12245999999999935, 0.3198000000000001, 0.09632999999999914, -0.5655000000000004, -1.5490800000000005, -1.5249000000000004, -1.3669500000000003, -0.4703399999999994, 0.04601999999999973, -1.223820000000001, -0.8572200000000003, -0.8182200000000006, -0.0869700000000001, -0.42744000000000015, -0.7363200000000004, -0.34398000000000073, -0.6750900000000003, -0.7706400000000001, -0.9102600000000004, -1.2819300000000002, -1.2487800000000007, -2.38992, -1.4348100000000006, -1.2577500000000004, -2.1368099999999988, -1.32522, -1.9106100000000006, -1.6048500000000003, -1.5151500000000004, -1.5471299999999997, -1.69455, -2.01825, -1.9558499999999999, -1.5798900000000007, -2.0233200000000005, -2.1524099999999997, -0.9835800000000005, -0.9410700000000002, -1.42077, -0.7495800000000004, -0.7530899999999996, -0.23283000000000076, -0.5042700000000001, -1.0245300000000004, -1.3575900000000003, 0.1665299999999994, -0.6934200000000003, -0.7803900000000004, -1.31664, -2.0073299999999996, -2.536950000000001, -1.83807, -1.8548400000000003, -1.9523400000000009, -1.2971400000000002, -1.3591500000000003, -1.6192800000000007, -1.3314600000000003, -1.0693800000000004, -0.9906000000000006, -0.9796800000000008, -1.0861500000000004], ...]
950911657 108.66375 91.041858 0.343384 good 185.38 0.134233 0.996667 0.137353 2.553681 4.761646 -0.060789 0.068677 4 850022278 7.271007 4 0.042647 0.340280 0.020972 0.454659 0.99 0.001986 0.412060 70.0 50.18 0.000744 [14.575575682970557, 20.446148513991922, 22.517684022526893, 22.552150725385083, 23.254051462411134, 24.870453159702638, 24.94168656783412, 26.439521473958717, 26.454921490129397, 27.015922079204213, 27.343522423198706, 29.989591868352427, 30.375492273564497, 32.531361203986535, 32.65879467113051, 35.40689755675707, 36.3531652170456, 36.58443212655249, 37.92556686813516, 39.77880214744547, 40.624469702099546, 40.7606031783789, 40.85743661339152, 40.87330329671889, 40.90180332664515, 42.285771446538035, 42.70737188923669, 42.861705384626845, 42.890672081709795, 43.456339342351484, 43.570306128688195, 43.639472867982924, 45.31427462659701, 46.125642145234565, 47.1345432046242, 47.84914395498581, 47.994277440715564, 48.644678123664335, 49.157945329283706, 49.28017879096745, 49.49097901231677, 49.725879258972164, 50.15674637806789, 50.17461306349535, 50.196413086386315, 50.23334645850128, 50.26051315369415, 50.34811324567802, 50.37387993940083, 52.2457485716103, 52.89544925382404, 54.1504839049979, 54.152717240676324, 54.234917326989965, 55.168884974362946, 55.19608500292415, 55.600752094508714, 57.302720548315676, 57.8284877670606, 58.317721614110575, 58.43325506875902, 58.47332177749746, 58.54405518510392, 59.19438920131602, 59.54225623325808, 59.61752297895807, 60.090656809102335, 60.249623642691034, 60.39042379053726, 60.7950575487535, 60.98689108352032, 61.16352460232646, 61.16455793674484, 61.43932489192866, 61.56159168698074, 61.62025841525, 61.74509187966386, 61.8998920422107, 62.00979215761057, 62.84865970512434, 63.489727044939364, 63.72596062632815, 64.3275945914031, 64.57949485590925, 64.58596152936619, 65.44239576199242, 65.64316263947296, 66.05552973914287, 66.12879648274279, 66.13232981978626, 66.78403050410009, 66.83096388671551, 67.37629779267297, 67.4987312545667, 67.64546474197654, 67.83689827632335, 68.16413195326615, 68.44703225032367, 68.77583259557821, 68.97646613958543, ...] [0.00011389060100075786, 0.00013208466479374336, 0.00015119175359907535, 0.00013592710930953572, 0.00011735276898856525, 0.0001237511807978042, 0.00011250248562665697, 0.00010995340156617148, 0.00011740681365934683, 0.00010809602841288236, 0.00011407011493085033, 0.00010798965742476882, 0.00010740313920617766, 0.00011856508207602488, 0.00011073958263644736, 0.00011353685585003522, 0.00011915939670969607, 0.00011427603258909173, 0.00010689424146769706, 0.00012046694585491563, 0.00012948986271233508, 0.00013765488915523484, 0.0001261625314649297, 0.00012233252782811269, 0.00016087962414568978, 0.0001282658451830928, 0.00011112912845389779, 0.00011109781514446419, 0.00011066140246407037, 0.00013037311602377135, 0.00010695872390828984, 0.00011626302850745855, 0.0001250951099403431, 0.00012012693771262747, 0.00012715956923221936, 0.00011390321862465944, 0.00017738941680232087, 0.00010871527390031709, 0.00011965588302668905, 0.00011551215714578197, 0.00010859440982825122, 0.00012368685546381252, 0.0001334497149549689, 0.0001461488575442071, 0.00012234615682575893, 0.00011415440262234545, 0.0001647195156792141, 0.0001229261060245912, 0.00014177818135883513, 0.0001296380829713191, 0.00013011054179750493, 0.00010783907074760559, 0.00010941125614323112, 0.00011476551784317278, 0.00012261037085217443, 0.00012092712090872722, 0.00011101532435971925, 0.0001062007925687259, 0.00010706158945536612, 0.00011566349007930047, 0.00010644532899335247, 0.00011479231433782447, 0.0001216978760746067, 0.00011899559343971453, 0.00010587926409039324, 0.00010706935641295846, 0.00010785479122687909, 0.00011803931501625016, 0.00012281883167352127, 0.00012023260172103602, 0.0001377781000071548, 0.00011317902592768373, 0.00011912350767050518, 0.00010837483371487588, 0.00010779071137195164, 0.0001129259959274347, 0.0001147369538992586, 0.00010869718700286439, 0.0001058568665805726, 0.00012196744154462247, 0.00010603829524736608, 0.00010636323097511032, 0.00011318472104197394, 0.00013650900270255673, 0.00014364807394440015, 0.00011761424346862391, 0.00011576099436361391, 0.00011304078193787015, 0.00011602411846298421, 0.00010820765265297049, 0.00010652960686568502, 0.00011193426050793248, 0.00011584616577974027, 0.00010916688664436823, 0.0001106109712451143, 0.00010682551714887432, 0.00010802091181922699, 0.00010847069819904025, 0.00010640884098524485, 0.00010789392058971787, ...] [[0.0, 4.632810000000003, 7.096050000000002, 4.047420000000001, 4.46706, 7.515300000000003, 6.372210000000004, 5.314140000000004, 5.254470000000002, 3.545490000000004, 7.578870000000004, 6.450600000000003, 5.409690000000001, 8.650200000000003, 2.5053600000000023, 7.322250000000003, 5.129280000000004, 2.336880000000007, -1.6387799999999917, -0.32642999999999134, 4.229550000000005, -1.2409800000000004, 2.5236900000000038, 3.4990800000000037, 4.7576100000000014, 9.296430000000006, 3.243240000000002, 5.450640000000003, 4.613310000000001, 7.766850000000002, 4.211610000000002, 7.936890000000004, 5.814510000000004, 5.288400000000003, 4.8363900000000015, 3.2904300000000006, 7.546110000000003, 8.762910000000002, 6.16629, 8.058960000000003, 3.7716899999999995, 6.523530000000003, 2.4593400000000036, 5.775510000000002, 8.331960000000002, 5.575050000000003, 6.375330000000002, 6.535230000000004, 6.9954300000000025, 4.707690000000002, 3.712020000000001, 4.294290000000003, 1.333020000000003, 2.672670000000001, 5.569200000000002, 2.0549100000000005, 5.3430000000000035, 0.5374200000000009, 5.726370000000003, 4.631640000000004, 5.116020000000002, 4.328610000000001, 8.781240000000002, 6.567600000000004, 6.555900000000003, 7.013370000000004, 3.810300000000006, 4.204200000000002, 3.483090000000002, 4.808700000000002, 3.0517500000000015, 2.176200000000007, 7.088640000000003, 4.4159700000000015, 1.111500000000003, 6.266910000000003, 3.9343200000000023, 2.7608100000000055, 2.533050000000004, 6.477900000000003, 1.848990000000005, 5.8090500000000045], [0.0, 0.48320999999999925, 0.4274399999999992, 0.7448999999999993, -0.16185000000000094, -0.3315, -0.4297800000000004, -0.3424200000000006, -0.498420000000002, -0.6095700000000005, -1.3400400000000015, -0.615810000000001, 0.7406099999999991, 0.9632999999999989, 1.5233399999999993, 0.43250999999999945, -0.7686900000000007, -2.095080000000004, -2.923830000000003, -3.9744900000000043, -4.0404, -3.935490000000001, -2.3099699999999994, -1.0194600000000005, -1.1290499999999986, -0.716040000000001, 0.31199999999999956, 1.0857599999999994, 1.021409999999999, 0.1825199999999993, 0.972659999999999, 0.8423999999999998, 1.3103999999999996, 1.9156800000000005, 1.5615599999999992, 2.0728499999999994, 2.4410099999999972, 1.73238, 1.3431599999999997, 1.5151499999999998, 2.1566999999999976, 1.3805999999999992, 0.17745000000000005, -0.33540000000000025, -0.5417099999999998, -0.19851000000000074, 0.26207999999999876, -0.061230000000000784, -0.3396900000000006, -0.2648100000000001, -0.10569000000000028, -0.3974099999999998, -0.3580200000000011, -0.8431800000000002, -1.1267100000000019, 0.06551999999999919, 0.20513999999999927, 0.7390499999999991, 0.4079399999999993, 0.46253999999999906, 1.5315299999999992, 1.6933799999999999, 0.5553599999999991, 0.14936999999999945, 0.07722000000000079, -0.2379, -0.3907800000000018, -1.5065700000000004, -1.6138200000000027, -1.6013400000000009, -1.5779400000000012, -1.0081500000000005, -0.1868100000000007, -0.5144100000000008, -0.45279000000000014, -1.1700000000000017, -1.5756000000000019, -1.092000000000001, -0.47892000000000123, -1.341209999999999, -1.310789999999999, -1.0058100000000012], [0.0, -0.05381999999999998, -0.8712600000000021, -1.2109499999999973, -1.3790399999999967, -1.3591500000000014, -1.2651600000000012, -1.1789699999999983, -0.8665800000000008, -1.8259799999999995, -1.9878299999999993, -1.616940000000001, -1.1715600000000044, -0.9656400000000049, -0.2164500000000018, -0.6762600000000005, -1.6926000000000019, -4.827419999999999, -8.510579999999997, -11.74758, -12.216750000000012, -9.228570000000005, -6.963839999999996, -3.7342499999999976, -2.032680000000004, -0.001560000000001338, 1.6578899999999992, 1.8825299999999991, 2.137199999999999, 2.00265, 1.1189099999999992, 1.1980799999999991, 2.66721, 2.97063, 3.1866899999999996, 2.3138699999999996, 2.496, 2.828279999999999, 2.2818899999999998, 1.368509999999999, 1.5541499999999986, 1.1719499999999994, 0.3127799999999985, -0.14351999999999854, 0.379079999999999, 0.7675199999999986, 0.3833699999999989, 1.6298099999999998, 0.3517800000000004, -0.10218000000000038, -0.9211799999999997, -0.9508200000000007, -1.1848199999999967, -2.049840000000003, -1.6543800000000028, -0.7671299999999981, -0.5791499999999985, 0.8607299999999982, -0.31667999999999985, 0.05694000000000132, 0.26831999999999856, 0.12324000000000024, -1.1957400000000007, -0.9379500000000003, -0.6009899999999995, -1.4515800000000043, -0.7721999999999989, -1.0561199999999977, -1.8645899999999993, -1.021800000000002, -1.1407499999999997, -0.7987200000000021, -0.9675900000000022, -0.9410700000000021, -2.2066200000000036, -2.020979999999999, -1.7355000000000014, -1.9496100000000047, -1.1111099999999987, -1.7682600000000028, -3.32475, -3.770520000000004], [0.0, 0.5690100000000022, 0.6633900000000121, 0.011700000000010036, -0.17393999999999288, -0.9929399999999955, -0.7530899999999949, -0.33149999999998236, 0.7316400000000094, 0.033930000000014005, 0.19187999999999583, 0.778050000000011, 1.0093200000000104, 0.6778200000000183, 0.366210000000013, 0.537809999999995, -0.7503599999999917, -3.6425999999999963, -5.645249999999995, -6.56565, -6.359339999999978, -5.46078, -3.2155499999999844, -0.6977099999999936, 0.24141000000001256, 0.9695400000000083, 1.195740000000006, 1.885650000000017, 1.5514200000000162, 1.3985400000000068, 0.5089500000000076, 0.9149400000000103, 1.974570000000015, 2.5275900000000098, 2.2456200000000024, 2.496000000000019, 2.5291500000000138, 1.6298100000000018, 1.9656000000000038, 1.5993900000000103, 1.3431600000000055, 1.2694500000000097, 0.9851400000000083, 0.4461600000000079, 0.5608200000000227, 1.6068000000000096, 0.8037900000000082, 0.6399900000000134, 0.14820000000000455, 1.0147800000000116, 0.9356100000000112, 0.012090000000007706, 0.03471000000001645, -1.6442399999999893, -0.6364799999999775, -0.5409299999999959, -0.28664999999999097, 0.27027000000000534, 0.5760300000000029, 0.0089699999999997, 0.7133100000000123, 0.40755000000000763, 0.682500000000001, 0.8073000000000157, 0.3053700000000088, 0.2659800000000043, -0.28430999999999607, -0.8420099999999859, -1.1001899999999907, -1.0549499999999785, -0.1883699999999866, 0.49413000000000196, -0.2480399999999907, -0.13454999999999018, 0.39156000000000724, -0.07565999999998851, -0.8416199999999936, 0.21489000000000225, 0.32643000000001443, -0.2195699999999885, -0.04484999999998962, -1.0763999999999907], [0.0, -0.9554999999999995, -0.5120699999999994, -0.04172999999999927, -1.4730299999999992, -1.9562399999999998, -2.2132499999999995, -2.2967099999999996, -1.7253599999999998, -1.5553199999999987, -1.8349499999999983, -0.8228999999999992, -0.7507499999999989, -1.8669299999999986, -1.3228799999999998, -1.3743599999999996, -2.3279099999999997, -8.822969999999998, -16.38234000000001, -20.465640000000022, -18.900180000000017, -15.41319, -9.588539999999995, -4.489680000000003, -1.2218699999999993, 1.638000000000001, 3.459300000000005, 4.302870000000002, 5.308289999999995, 4.887870000000008, 4.4713499999999975, 5.039579999999998, 4.750200000000002, 5.600789999999997, 5.6553899999999935, 5.406570000000004, 5.588309999999998, 5.029830000000001, 4.254509999999996, 2.857140000000001, 2.993249999999999, 2.04906, 1.4999399999999976, 1.3790399999999996, 2.01825, 1.6968899999999987, 1.7940000000000003, 1.7374499999999975, 1.2702300000000004, 0.8439600000000003, 9.992007221626409e-16, -1.1239799999999993, -2.0494499999999998, -1.8883799999999997, -2.0248799999999987, -1.6087499999999992, -1.7113199999999993, -1.215629999999999, -1.790099999999999, -1.7440799999999994, -1.3786499999999995, -0.9547199999999993, -0.631409999999999, -1.2148499999999993, -1.0358399999999994, -0.9149399999999996, -0.2901599999999994, -1.2035399999999978, -2.0385299999999997, -2.5697099999999984, -2.1964799999999993, -1.5077399999999999, -1.9238699999999993, -2.40942, -2.316209999999999, -3.04941, -2.8883399999999995, -1.824029999999999, -1.7534399999999994, -0.9110399999999993, -1.2694500000000004, -2.094299999999999], [0.0, -0.7312500000000011, -0.2928900000000003, -0.5245500000000054, -1.8751200000000026, -2.4757200000000013, -1.581840000000005, -1.5459599999999996, -0.8895900000000005, -1.135680000000003, -1.5947100000000018, -0.5779800000000006, -0.1294800000000036, -0.34553999999999974, -1.11774, -1.0030800000000006, -2.037750000000002, -5.197919999999993, -8.251229999999998, -9.539399999999995, -9.354929999999989, -7.898669999999994, -5.4986099999999976, -2.6434200000000048, -0.8154900000000032, 0.45825000000000027, 1.6571099999999988, 2.0459399999999994, 2.1843899999999983, 2.085329999999999, 2.5061399999999994, 2.147339999999999, 2.731169999999999, 2.9823299999999993, 3.6160799999999993, 2.949959999999999, 2.9019899999999996, 2.3485799999999997, 1.682459999999999, 2.056469999999999, 1.8177899999999998, 1.2698399999999994, 0.43875, -0.04679999999999973, 0.39584999999999826, 0.8314799999999987, 0.3580199999999989, 0.5510699999999982, 0.6626100000000001, 0.7109699999999988, -0.40286999999999873, -0.17277000000000298, -0.3958500000000007, -0.08970000000000056, -0.1825199999999998, 0.5417099999999984, 1.0338899999999982, 0.5120699999999998, -0.14742000000000566, -0.012869999999999493, -0.2835300000000016, -0.15717000000000425, -0.008580000000001586, 0.1610699999999996, -0.6758700000000006, -0.4188600000000049, -0.3104400000000038, -1.44027, -1.0155599999999998, -1.4484600000000007, -1.4094599999999988, -2.0471100000000013, -1.3310700000000009, -0.9995700000000012, -0.9987900000000005, -1.6734900000000006, -1.37358, -0.49530000000000074, -0.033150000000001345, 0.37244999999999884, 0.5276699999999988, -0.25037999999999805], [0.0, -0.11387999999999976, 0.8751599999999988, -0.15366000000000013, -0.70161, -0.43484999999999974, -0.5459999999999993, -1.19769, -0.8880299999999999, -0.5846100000000001, -0.6532499999999999, 0.046410000000000506, -0.3533400000000003, -0.4516199999999997, 0.20475000000000088, 0.14897999999999967, 1.3587599999999984, -10.521809999999986, -33.32550000000004, -48.89507999999999, -48.840090000000025, -37.68375000000002, -22.053330000000003, -9.392759999999996, -0.16067999999999794, 7.138169999999995, 12.56853000000001, 16.996980000000008, 17.880330000000026, 17.47512000000002, 16.511820000000007, 16.893630000000016, 16.257149999999996, 16.196699999999993, 15.64797, 15.32661000000001, 14.462370000000005, 13.66989, 12.923820000000012, 11.290110000000006, 9.289020000000004, 7.207980000000001, 6.4088699999999985, 5.698289999999995, 5.011889999999994, 5.576609999999997, 4.903469999999993, 3.6866699999999972, 2.9897400000000007, 2.6449800000000008, 1.930499999999999, 1.2710100000000009, 0.6610500000000001, -1.0631400000000006, -0.23517, -0.43134000000000006, -0.6649500000000002, -0.11387999999999954, -0.7335900000000002, -0.24335999999999935, 0.6473999999999984, 0.49803, 0.057719999999996885, -0.3736200000000014, -0.3237000000000001, 0.10881000000000074, 0.41496000000000044, 0.15483000000000047, 0.30030000000000134, -0.07097999999999982, -0.6926399999999997, 0.07136999999999949, -0.44849999999999934, -1.134119999999999, -0.8790599999999988, -1.2210899999999991, -1.9776899999999997, -1.3763100000000004, -0.8880299999999999, -0.7367099999999995, -1.2316199999999997, -0.6785999999999993], [0.0, -0.07215000000000149, -0.19928999999999975, -0.18564000000000203, -1.2639900000000015, -1.2058799999999983, -0.59124, -0.7371000000000019, -0.9223500000000011, -1.3150799999999991, -0.7796100000000008, -0.7881899999999995, -0.11933999999999934, 0.07136999999999927, -0.1630199999999995, -0.7246199999999992, -2.6461500000000004, -8.886150000000004, -16.71384, -20.56509000000001, -19.366620000000005, -15.495090000000014, -9.392370000000012, -4.792709999999996, -0.7370999999999992, 2.547480000000001, 4.806359999999998, 6.437730000000002, 7.345259999999996, 7.58277, 6.699419999999998, 7.183800000000005, 8.163870000000001, 8.955179999999993, 8.373299999999993, 8.509410000000003, 7.596810000000003, 6.703710000000001, 5.800860000000002, 5.433870000000006, 4.6370999999999984, 3.5228699999999997, 2.1539700000000006, 2.3856299999999995, 2.591939999999999, 3.7330799999999993, 2.923049999999998, 2.529929999999999, 1.5736499999999993, 0.9137699999999995, 1.363829999999999, -0.09009000000000089, -0.3139500000000004, -0.21567000000000114, 0.10061999999999871, -0.09164999999999979, 0.48633000000000026, 0.9079200000000004, 0.17003999999999908, 0.09671999999999947, -0.4270499999999997, 0.2780699999999995, -0.3201900000000004, 0.1333799999999996, -0.8076900000000009, -0.5226000000000015, -0.28313999999999995, -1.6906499999999967, -1.0662600000000029, -1.2308400000000033, -1.584180000000003, -1.9776899999999995, -1.1278799999999998, -0.6392100000000012, -0.6013800000000007, -1.2671100000000006, -1.6399500000000033, -0.40053000000000116, -0.12597000000000147, 0.2492099999999985, 0.08735999999999888, 0.18017999999999956], [0.0, 0.58422, 0.55887, 0.8517600000000007, -0.6282900000000011, -0.25155000000000005, 0.26090999999999975, -0.49920000000000103, -0.29484000000000055, -0.7959900000000006, 0.14000999999999886, 0.4953000000000005, 0.41261999999999954, 0.8689199999999999, 1.0841999999999994, 1.4940900000000013, 0.5038799999999983, -11.085359999999998, -30.62514, -44.63276999999992, -45.376889999999946, -34.51109999999998, -21.505770000000016, -8.876790000000007, 0.5300099999999996, 6.725550000000004, 12.811890000000004, 16.883880000000016, 17.8269, 17.6826, 18.457529999999984, 17.769180000000013, 17.551560000000016, 17.41818000000001, 17.753189999999982, 16.832009999999997, 14.928810000000002, 13.541189999999995, 11.027639999999991, 10.423920000000008, 9.399779999999994, 7.701330000000002, 6.483750000000004, 6.365579999999996, 5.98767, 6.165119999999993, 5.289179999999995, 3.7155299999999962, 2.7549600000000014, 1.8283200000000006, 1.57443, 1.10331, 0.8923199999999973, 0.6622199999999991, 1.1879399999999998, 1.6227899999999988, 1.1473800000000005, 0.7850699999999984, 0.9149400000000003, 0.6844499999999969, 0.3287699999999998, 0.6021599999999989, -0.04485000000000117, -0.4461600000000009, -0.5697900000000008, -0.19733999999999952, 0.1524899999999989, -0.4309500000000007, -0.10881000000000085, -0.1560000000000007, -0.8104200000000004, -0.992940000000001, -0.10920000000000107, -0.28392000000000006, -0.6013800000000009, -0.3728400000000003, -1.5412800000000004, -0.16458000000000028, 0.2542799999999996, 0.9570600000000009, 1.0424699999999993, 0.8006699999999995], [0.0, -0.9098700000000033, -0.08228999999999731, -0.6590999999999991, -1.2967500000000007, -1.7702100000000036, -1.3236600000000003, -0.8708699999999983, -1.0264800000000034, -0.0787799999999983, -0.17783999999999978, 0.4902299999999997, -0.20319000000000154, -0.321750000000002, 0.4968599999999994, 0.4878899999999997, -1.2206999999999968, -4.995900000000001, -10.892309999999993, -14.47602000000002, -15.24275999999999, -13.609049999999993, -9.305400000000002, -6.043829999999993, -1.630979999999997, 1.7144399999999989, 5.279430000000001, 6.901050000000003, 7.2036900000000035, 8.601839999999997, 7.243469999999993, 7.141679999999999, 8.064029999999994, 8.509019999999998, 7.67403, 7.516079999999997, 7.040669999999997, 7.4349599999999985, 5.691659999999999, 5.21508, 4.65231, 3.7783199999999986, 2.3013899999999996, 2.5595699999999986, 1.8930599999999993, 2.574779999999999, 2.0552999999999986, 2.3232299999999992, 1.9382999999999988, 0.8041799999999995, 1.1505000000000003, 0.005850000000000577, -0.0054600000000002424, 0.584609999999999, 0.9055799999999998, 0.4742399999999998, 0.5717399999999984, 0.6766500000000002, 0.3404700000000003, -0.660659999999996, -0.3790800000000001, 0.2991299999999997, 0.552239999999999, -0.13181999999999983, -0.4465500000000029, -1.011270000000002, 0.18368999999999946, 0.09594000000000191, 0.47463000000000055, -0.2445300000000019, -1.189890000000001, -1.2140700000000009, -0.8271900000000016, -0.7675200000000002, -0.21177, -0.4738500000000001, -0.46527000000000074, -0.1536599999999999, -0.3377399999999997, 1.5705299999999989, 1.2011999999999987, 1.1590799999999994], [0.0, -0.4032600000000013, -1.12515, -1.6929900000000018, -1.556100000000002, -1.392300000000002, -0.8552700000000006, -1.2862200000000013, -1.2780300000000027, -1.0666500000000008, -0.868140000000003, -0.5428800000000014, -0.18954000000000115, 0.33890999999999893, 0.7312500000000006, 4.681560000000001, 13.525200000000003, 0.12323999999999868, -42.886350000000014, -77.93058000000006, -82.80012000000002, -64.40499000000007, -40.21329, -18.77616, -3.803670000000002, 8.721570000000002, 17.06133000000002, 23.330190000000027, 25.294230000000013, 24.43428000000002, 24.71313000000003, 25.061789999999995, 25.86362999999997, 24.797759999999986, 24.825059999999986, 23.323560000000008, 20.489430000000013, 17.516459999999988, 15.055169999999997, 12.309180000000008, 12.210509999999985, 10.298339999999989, 8.507459999999998, 6.336719999999998, 5.662799999999999, 5.378099999999993, 3.389879999999996, 2.4183899999999903, 1.8349499999999987, 0.6509099999999992, 0.7062900000000001, -0.6306300000000005, -1.346280000000002, -1.935960000000001, -2.196870000000002, -0.8264100000000021, -2.146950000000002, -1.5369900000000019, -1.5459600000000013, -2.854410000000001, -1.7834700000000026, -1.5740400000000017, -1.0853700000000028, -1.4184300000000012, -1.571700000000002, -1.5245100000000016, -1.2522900000000017, -2.111460000000002, -2.6812500000000012, -2.7444300000000017, -2.987010000000002, -3.016650000000002, -2.6785200000000025, -2.2924200000000017, -1.2405900000000014, -1.9125600000000036, -2.4191700000000016, -2.175030000000002, -1.7405700000000017, -1.0912200000000023, -1.281150000000002, -0.9488700000000019], [0.0, 0.27143999999999935, -0.13844999999999885, -0.17549999999999866, -0.82056, -0.5736900000000018, -0.27846000000000104, -0.36036000000000046, 0.20513999999999943, 0.5721299999999988, 0.6509099999999993, 1.1493299999999995, 1.0093199999999998, 0.9621299999999995, 0.6298499999999979, 0.9441899999999995, 1.25346, -2.7229799999999997, -12.34740000000001, -21.497190000000014, -26.379210000000008, -24.640199999999993, -17.88540000000002, -11.658659999999998, -4.290780000000001, 0.7768799999999996, 6.018089999999995, 9.594000000000001, 10.89426000000001, 11.448450000000006, 11.997570000000005, 10.922729999999994, 10.848239999999999, 11.428560000000001, 11.15244, 10.932479999999996, 9.73713, 9.683309999999993, 8.059740000000001, 6.911970000000001, 7.256340000000001, 5.8695, 4.715099999999998, 3.548219999999998, 3.4031399999999996, 2.7261000000000006, 2.1017099999999993, 1.7035199999999997, 1.4597699999999998, 1.704299999999999, 1.71483, 1.3041599999999993, 0.5155799999999995, -0.06045000000000145, -0.39936000000000105, -0.5362499999999994, 0.47774999999999945, -0.3178500000000013, -0.5748599999999995, -0.05187000000000008, -0.10724999999999985, -0.3689400000000005, -0.43368000000000095, -0.7948199999999996, -1.003080000000002, -1.2074400000000018, 0.0015599999999995617, -0.6684600000000007, -1.2050999999999985, -1.8349499999999965, -1.9383, -1.625910000000002, -2.032680000000001, -1.311570000000001, -0.6961499999999994, -0.7027800000000008, -1.0510500000000005, -0.49647000000000086, 0.26910000000000023, 0.5970899999999996, 0.6992699999999995, 0.9945], [0.0, -0.42510000000000003, -0.9320999999999962, -1.7686499999999943, -1.9457099999999978, -1.3232700000000004, -0.3318899999999947, -1.0280399999999958, -0.9223499999999976, -0.9418499999999956, -0.39623999999999837, -0.4364099999999982, 0.8833500000000023, 1.3872300000000033, 0.9285900000000034, 2.371200000000003, 4.681950000000003, 2.540070000000002, -6.784439999999988, -20.66649, -30.762809999999998, -30.881760000000003, -24.65697000000001, -16.63974, -7.89087, -1.0568999999999957, 5.068830000000003, 8.990280000000002, 11.44767, 13.082159999999998, 13.74282000000001, 13.075139999999998, 13.903889999999995, 13.146899999999999, 12.85284, 11.637209999999996, 10.206299999999997, 8.856510000000005, 7.977840000000004, 7.3421400000000006, 7.805850000000001, 6.124950000000005, 5.281380000000002, 4.125810000000003, 3.544320000000003, 3.6480600000000027, 2.318550000000002, 1.9804200000000027, 0.8911500000000077, 0.24531000000000613, -0.11582999999999988, -0.33188999999999735, -0.024569999999998426, -1.63409999999999, -1.776839999999996, -1.4925300000000017, -1.1270999999999973, -0.890369999999995, -1.863809999999996, -1.4106300000000052, -0.5596499999999973, -0.6002099999999966, -0.7035599999999973, -1.2386399999999962, -1.5619500000000017, -2.3567699999999943, -0.8568299999999964, -1.2444899999999977, -1.5506399999999991, -3.2490899999999887, -2.626259999999999, -1.945319999999993, -1.863029999999998, -0.6310199999999946, -1.0424699999999985, -0.8408399999999978, -0.49295999999999873, -0.2948400000000002, 0.5561400000000041, 0.30420000000000424, 0.2410200000000029, 0.48789000000000415], [0.0, 0.37752000000000585, -0.09125999999999301, 0.27807000000000404, -0.983969999999994, -1.4301299999999966, -0.921569999999992, -0.017939999999996736, -0.5140199999999968, 0.794820000000005, 0.8751600000000068, 0.38454000000000566, 1.6380000000000088, 1.1091600000000041, 0.28743000000000407, 0.23868000000000666, 0.9870900000000051, 0.5725200000000066, -2.0747999999999935, -5.561009999999987, -10.232819999999995, -12.526409999999993, -11.253450000000004, -8.473920000000003, -3.9838499999999826, -1.1941799999999976, 1.4375400000000056, 3.5384700000000056, 4.231110000000005, 4.548570000000005, 5.022810000000005, 6.097650000000007, 7.006740000000006, 6.713460000000002, 5.6982900000000045, 6.0391500000000065, 5.187000000000006, 4.471350000000005, 4.789980000000005, 4.098120000000005, 4.605900000000005, 4.037670000000005, 4.131270000000005, 2.6949000000000036, 2.8606500000000024, 3.168360000000006, 1.7600700000000038, 1.617330000000008, 1.526460000000005, 1.2948000000000035, 0.9270300000000056, 1.0358400000000016, 0.65988000000001, 0.6477900000000019, -0.2534999999999945, -0.239459999999994, 0.4890600000000038, 0.6485700000000043, 0.1626300000000045, 0.04212000000000149, 0.10452000000000616, 0.06006000000000533, -0.33266999999999847, -0.7651799999999938, -0.5034899999999958, -0.2441399999999998, -0.11231999999999243, 0.37830000000000785, -0.11270999999999454, -0.7074599999999958, -0.4652699999999905, -0.725789999999991, -0.27416999999999714, -0.6723599999999976, 0.10257000000000538, 0.0062400000000062406, 0.7273500000000022, 1.0026900000000056, 0.6271200000000041, -0.03899999999999704, 0.1142700000000092, 0.8279700000000063], [0.0, 0.05186999999999964, -0.9426300000000003, -2.28423, -2.92227, -2.5466999999999977, -1.6263000000000005, -1.37358, -1.5853500000000005, -1.3599300000000016, -1.6122600000000011, 0.025739999999999208, 0.4048199999999995, 1.140749999999999, 0.8634599999999988, 1.0159499999999992, 1.42389, 1.579889999999998, -2.379389999999998, -9.734400000000011, -15.578550000000003, -17.365919999999978, -15.832050000000006, -12.755339999999999, -8.43102, -4.838340000000002, -0.73164, 2.761979999999998, 3.77676, 5.495099999999999, 7.8245699999999925, 8.866259999999993, 9.212969999999991, 8.111999999999998, 8.572980000000001, 7.959900000000001, 7.363589999999995, 5.3141399999999965, 4.45224, 4.431180000000005, 5.286449999999991, 4.890989999999997, 3.5544599999999993, 3.345809999999999, 2.2814999999999976, 1.727309999999997, 1.184819999999999, 2.2374299999999985, 1.836899999999999, 1.5919800000000008, 0.1957799999999993, -0.44148000000000026, -0.85137, -1.0315500000000002, -1.5802800000000001, -1.5233400000000001, -1.7729400000000002, -1.0912200000000005, -0.5444400000000006, -0.5401500000000001, -0.5635500000000009, 0.04718999999999951, -0.5616, -1.4894100000000003, -1.03233, -0.8775000000000006, -1.3552499999999992, -1.366950000000001, -0.25505999999999995, -0.004290000000000571, -0.4890600000000009, -0.15092999999999923, -0.022620000000001084, -0.20630999999999988, -0.2917199999999999, 0.047579999999999734, -0.35412000000000005, -0.24375000000000013, -0.06201000000000134, -0.9578400000000007, -0.9886500000000007, -0.03783000000000136], [0.0, -0.6657300000000024, -0.871260000000001, -1.5541500000000006, -2.1777600000000037, -2.4796200000000006, -3.3224099999999988, -3.389879999999999, -3.61608, -2.16645, -2.1243299999999996, -0.4024800000000006, -0.007020000000000692, -0.026520000000004318, 1.1395799999999987, 1.3930799999999999, 1.90944, 0.9398999999999994, -1.8813599999999993, -5.31219, -9.965670000000012, -12.581789999999996, -11.432070000000017, -9.294870000000007, -6.614789999999992, -3.6636600000000055, -1.5100800000000045, 0.7620599999999993, 2.3388299999999997, 2.846609999999999, 4.461599999999999, 4.889820000000004, 5.335200000000001, 5.477160000000001, 4.874610000000004, 4.574700000000002, 3.832919999999995, 2.97258, 2.5486499999999994, 1.5155399999999988, 2.0081100000000003, 1.287779999999999, 1.669979999999998, 1.3883999999999994, 1.5120299999999987, 1.8641999999999999, 0.7940399999999991, -0.40131000000000094, -0.18252000000000002, -0.6793800000000001, -1.31781, -1.3923000000000008, -0.8919300000000019, -2.007719999999999, -2.909790000000002, -2.555670000000002, -2.479230000000002, -1.7971199999999954, -1.7978999999999978, -1.4566500000000004, -1.2585300000000028, -1.5958800000000004, -2.021760000000004, -2.5775099999999975, -2.6742300000000014, -2.326350000000004, -1.971840000000004, -1.6789500000000028, -1.9078799999999976, -2.4901500000000016, -1.1259300000000023, -1.6883100000000002, -1.7986800000000025, -1.8716100000000033, -0.5846100000000025, 0.4531799999999989, 0.4227599999999998, 0.14312999999999987, -1.0467599999999997, -0.40482000000000107, -1.06587, -0.6575400000000009], [0.0, 0.3080999999999978, 0.27495000000000047, 0.421199999999998, 0.5635500000000002, 0.05303999999999798, -0.47619000000000145, 0.04835999999999929, 0.16535999999999973, -0.18057000000000034, 0.47189999999999666, 1.2760799999999972, 1.5167099999999993, 2.07441, 2.0923499999999984, 1.5541499999999981, 1.2768600000000028, 0.30186000000000046, -0.8264100000000025, -2.3844600000000002, -4.249050000000001, -4.67415, -4.3722900000000005, -3.3953400000000005, -2.15787, -1.2101700000000017, -1.1867700000000008, -0.5354700000000006, 0.7854599999999987, 2.6145599999999987, 3.366479999999997, 4.386720000000002, 4.810260000000001, 4.735769999999993, 4.548569999999991, 5.484569999999996, 4.324709999999994, 2.5295399999999995, 1.1910600000000002, 1.7132699999999956, 2.66292, 2.4995099999999977, 1.9730100000000026, 1.22031, 2.003039999999999, 2.32323, 2.0701200000000006, 2.22573, 1.3181999999999978, 0.24960000000000093, 0.6618299999999948, 1.1836499999999957, 0.7499699999999994, -0.2928900000000021, -0.9898200000000015, -0.3127799999999996, -0.6910799999999999, -0.03783000000000136, 0.13181999999999938, 0.33656999999999826, 0.5740799999999995, 0.6598799999999994, -0.28704000000000063, -0.3798600000000001, -0.17589000000000032, -0.11310000000000064, 0.4465499999999989, 1.0268699999999984, 1.0007400000000004, 0.8895899999999988, 1.281149999999999, 0.14702999999999777, 0.31940999999999997, 1.0046399999999998, 1.7386199999999978, 1.9921199999999986, 2.331029999999999, 0.8969999999999998, -0.4204199999999989, -0.6731400000000001, 0.1723799999999991, 0.8673599999999966], [0.0, -0.6037199999999958, -0.861509999999998, -1.565459999999997, -1.1801399999999969, -1.8408, -1.363049999999997, -1.9585800000000024, -1.531529999999998, -0.9297599999999997, -0.1407899999999982, 0.9301500000000009, 1.0654800000000013, 1.544400000000001, 2.3719800000000006, 2.057640000000001, 2.4090300000000013, 1.5693600000000008, 0.439920000000003, 0.18798000000000248, -0.9196199999999977, -2.6071500000000025, -3.7245000000000035, -3.2592299999999996, -2.779919999999998, -1.9932899999999993, -2.049059999999997, -1.5678000000000003, -1.5486899999999981, -0.7117499999999974, 0.22503000000000295, 0.30498000000000225, 0.8622900000000009, 0.4157400000000018, 1.0830300000000004, 1.2932400000000004, 1.1551800000000012, 0.5978700000000012, 0.9859200000000007, 0.5795400000000004, 0.7121400000000011, 0.5651100000000007, 0.9410700000000014, 0.8318700000000019, 1.2054900000000008, 2.9499600000000012, 2.3524800000000012, 2.1871200000000006, 1.4515800000000012, 0.2741700000000009, 0.07839000000000151, -0.33032999999999646, 0.20007000000000041, -0.1610700000000005, -0.8385000000000005, -0.28820999999999786, -1.0069799999999993, -0.3782999999999992, 0.4430400000000021, 0.3018600000000011, -0.16184999999999827, -0.4059899999999983, -1.1111099999999976, -1.6941600000000017, -0.7994999999999985, -0.3626999999999978, -0.35996999999999724, -0.8045699999999985, 0.1029600000000015, -0.34475999999999907, -0.20552999999999844, -0.5565299999999993, 0.17901000000000078, 1.0986300000000009, 0.25701000000000107, 0.2753400000000006, 0.7959899999999999, 0.11232000000000064, -0.05732999999999788, -0.6875699999999967, -0.6579299999999997, 0.21294000000000124], [0.0, -0.6247799999999999, -0.40911000000000153, -1.8216900000000018, -1.7620199999999988, -2.055300000000002, -1.6044599999999982, -0.9566699999999998, -0.11582999999999963, -0.0721500000000006, 0.6372600000000002, 1.55571, 1.5455699999999994, 2.233530000000001, 2.0970299999999997, 0.1712099999999997, -0.28626000000000035, -0.6013800000000007, -0.5701800000000004, -1.2998699999999985, -1.6029000000000009, -1.5498600000000007, -1.235130000000001, -1.0483200000000013, -1.838070000000001, -1.7253600000000004, -2.0755800000000013, -1.6259100000000004, -1.2811500000000013, -0.3595799999999999, 0.45551999999999965, 1.45743, 0.8455200000000002, -0.08931000000000025, 0.7484099999999991, 0.52065, 0.7394400000000003, -0.436800000000001, -1.873170000000002, -0.8498100000000011, 0.18174000000000012, -0.3131700000000005, -0.6688500000000004, -0.8868600000000008, -0.24687000000000064, 0.7519199999999994, 0.37322999999999984, -0.5651100000000011, 0.26636999999999983, 0.17823, 0.04250999999999988, 0.09983999999999987, 0.16808999999999957, 0.047189999999998816, -0.6080099999999998, -1.4937000000000002, -1.4597700000000016, -1.0401300000000007, -1.7550000000000001, -1.858740000000002, -1.4550900000000002, -1.22655, -1.9047600000000018, -0.9633000000000005, -1.3544700000000027, -1.6610100000000037, -1.8759000000000006, -0.29718000000000144, 0.22346999999999975, 0.06356999999999983, -0.3318899999999997, -0.6493500000000005, 0.3396899999999997, -0.42938999999999977, -0.1938300000000006, 0.37127999999999955, 0.33851999999999993, -0.8735999999999999, -1.5299700000000003, -1.6087500000000008, -1.6508700000000007, -0.9551100000000005], [0.0, -1.0498799999999997, -1.1832599999999998, -0.7160399999999998, -1.4441700000000013, -0.8381100000000001, -1.0526099999999996, -0.8287499999999999, -0.6672899999999993, -0.48788999999999977, -0.06630000000000025, 0.40208999999999984, 0.9090900000000013, 0.8856900000000003, 1.4176499999999994, 1.1660999999999995, 0.2616900000000004, 0.01989000000000052, 0.7889699999999984, 0.07994999999999985, -0.15950999999999982, -0.06083999999999956, 0.12596999999999992, -0.7406100000000005, -0.6099600000000003, -0.41651999999999956, -0.86892, -0.64506, -1.881359999999999, -0.7359299999999994, 0.1131000000000002, 0.44967000000000046, 1.0003500000000005, 0.19734000000000074, 0.39234000000000013, 1.8634200000000007, 1.116179999999997, 0.7168199999999998, 0.52338, 1.8131099999999998, 1.2308399999999968, 0.39584999999999937, 1.0354499999999989, 0.8018400000000014, 0.9305400000000004, 1.7581199999999997, -0.11661000000000021, -0.03510000000000024, 0.46410000000000085, -0.037049999999999805, -0.32526, 0.06785999999999981, 0.668070000000001, 1.0003500000000003, -0.8689199999999999, -1.4956500000000008, -1.4371500000000004, -1.3689, -0.13065000000000027, -0.17979000000000012, -0.2827499999999994, 0.3755700000000006, 0.19539000000000062, -0.8466899999999997, -1.193400000000001, -0.6735299999999997, -0.9710999999999993, -0.9328800000000005, 1.0268699999999982, 0.7655699999999992, 0.10841999999999863, -0.3252599999999993, -0.21059999999999957, 0.47892000000000023, 0.018719999999999626, 0.392340000000001, 0.49802999999999864, -0.4960799999999997, -0.06551999999999958, 0.21020999999999956, -0.023010000000000086, 0.0760500000000004], [0.0, -0.6275099999999991, -1.116569999999998, -1.7971199999999978, -1.7323799999999991, -1.6949399999999972, -1.8961799999999986, -1.277249999999998, -0.3896099999999971, -0.9172799999999981, -0.716429999999999, -0.01598999999999995, 0.4344600000000014, 0.9473100000000025, 1.766700000000001, 1.0806900000000015, -0.16652999999999807, -1.083419999999998, -0.45045000000000024, -0.0370499999999967, 0.1840800000000029, 0.30771000000000104, 0.6746999999999987, -0.1856399999999967, -0.4765799999999982, -0.5288399999999993, -0.9648599999999992, -1.3997099999999971, -1.2651599999999978, -1.1571299999999982, -0.820169999999999, -0.3213599999999963, -1.2390299999999983, -1.0565099999999992, -0.007799999999998253, 0.658320000000002, 0.5249400000000026, -0.7546499999999992, -0.9067499999999984, -0.8778899999999983, -0.7991099999999975, -1.2105599999999987, -1.7686499999999974, -0.8837399999999989, -0.49685999999999897, 0.8073000000000019, -0.44069999999999854, -1.4379299999999984, -0.264419999999999, 1.10682, 0.870480000000005, 0.1267500000000008, 0.015600000000000502, 0.015210000000002388, -0.9125999999999983, -1.5030599999999974, -2.1535799999999976, -1.7331599999999978, -0.7628399999999973, -0.6302399999999995, -0.2164499999999978, -0.04250999999999783, -0.48593999999999804, -1.080299999999998, -1.2444899999999983, -1.9449299999999983, -1.8279299999999985, -0.562379999999999, 1.152839999999998, 2.298270000000006, 2.395380000000002, 1.1115000000000035, 0.9777300000000047, 0.6368699999999992, -0.5974799999999976, -0.025349999999997763, 0.639600000000005, 0.43523999999999985, -1.0857599999999992, -1.6091399999999982, -1.0682099999999959, -0.8314799999999996], [0.0, -0.7788299999999996, -0.7940400000000003, -1.3193700000000006, -1.9640400000000018, -1.3252200000000014, -1.0767899999999992, -0.4461600000000006, 0.22307999999999992, 0.3158999999999999, 0.52611, 1.7936099999999995, 2.2553699999999983, 2.1184800000000004, 2.499900000000003, 1.713660000000002, 0.564329999999999, 0.6891299999999996, 0.7905299999999993, 2.369639999999998, 2.7923999999999984, 2.611440000000001, 1.7538299999999982, 1.4609400000000006, 0.49218000000000045, -1.0362299999999998, -1.2721799999999992, -1.1395800000000005, -2.88288, -2.976090000000001, -2.1726899999999993, -1.4160900000000014, -0.3981900000000001, -0.42821999999999993, 0.5931900000000001, 0.2819699999999996, 0.6821099999999996, 0.5073899999999997, 0.26714999999999983, -0.22814999999999963, -0.042120000000000546, -0.43290000000000073, -0.19343999999999967, -0.31199999999999845, -0.12635999999999964, 0.3439799999999995, -0.8786699999999997, -0.7640100000000007, -0.20709000000000033, -0.08541000000000024, -0.16263000000000047, -0.5506799999999998, 0.5007600000000006, 0.44498999999999955, -0.45942000000000044, -1.3252199999999998, -2.3360999999999983, -1.1493300000000004, 0.14273999999999948, 0.5783699999999996, -0.1212900000000001, -0.08462999999999997, -1.2277200000000006, -1.3747500000000028, -0.9512099999999996, -0.6111300000000002, 0.1848599999999999, 0.07604999999999948, 0.7909200000000003, 1.522949999999999, 0.42626999999999976, 0.1013999999999993, -0.63492, -0.5194799999999995, -0.18291000000000038, 0.6411599999999994, 1.1551799999999997, 1.6454099999999996, 1.8045299999999989, 0.12440999999999984, -0.3198000000000005, -0.5066099999999989], [0.0, -0.5662800000000014, -1.4024400000000006, -2.2148099999999946, -2.124329999999997, -1.4172599999999982, -2.159430000000002, -2.2042800000000025, -1.545569999999999, -0.5850000000000011, 0.024569999999999537, 0.6489599999999993, 1.06977, 1.8727800000000012, 0.20435999999999988, -0.30459000000000036, -0.5233799999999966, -0.7698599999999989, -0.32486999999999955, 0.13922999999999996, -0.6228299999999984, 0.1645799999999995, 0.3490500000000005, 0.7281299999999999, 0.1875900000000006, -0.055379999999998875, -0.6926399999999993, -0.7398299999999984, -0.9566700000000019, -1.1267099999999999, -1.3860600000000007, -1.5280199999999968, -1.0849799999999952, -1.6021199999999995, -0.33929999999999993, 0.13884000000000163, -1.0896599999999979, -0.47385000000000255, -0.1996799999999983, -0.6785999999999979, -2.5603500000000006, -2.7803099999999947, -2.5248599999999977, -1.9004700000000014, -0.8794500000000001, 0.3841500000000002, 0.9804600000000008, -0.3318900000000007, -0.4773600000000007, -1.5299699999999998, -1.7803499999999979, -1.0323299999999993, -0.8267999999999998, -1.4652300000000007, -1.7241899999999977, -2.5092600000000003, -2.625090000000001, -1.608749999999996, -2.1875099999999987, -1.2269399999999957, -1.7226300000000008, -2.057249999999999, -2.2959299999999985, -1.9792499999999988, -1.8092100000000004, -1.3100100000000003, -1.6477499999999974, -0.6434999999999953, 2.1867300000000007, 1.9067100000000008, 0.7983300000000015, 0.4172999999999998, -0.05615999999999932, -0.5350800000000009, -1.1801399999999969, -0.6590999999999967, -0.763620000000002, -1.0448099999999971, -0.8338199999999982, -0.5998200000000022, -0.21489000000000158, -0.45395999999999836], [0.0, -0.47579999999999956, -0.6372599999999977, -1.1044799999999961, -1.338089999999995, -0.35295000000000076, -0.43094999999999484, -0.20709, 0.21996000000000304, 1.0959000000000048, 0.36036000000000623, 1.188330000000004, 1.2850500000000036, 2.6297700000000015, 3.1640700000000006, 2.3548200000000086, 0.8466900000000024, 1.1173500000000045, 1.6337100000000007, 0.9597900000000044, 2.095860000000001, 2.2440600000000015, 2.304120000000005, 1.6036800000000033, 1.5888599999999968, 1.7226300000000023, 0.7605000000000031, 0.847470000000011, -0.5105099999999956, -1.590420000000007, 0.03861000000000292, -0.48437999999999626, -0.7133099999999972, -0.7519199999999957, -0.26597999999999633, 0.2421899999999999, 0.5136300000000018, -0.2129399999999979, 0.2464799999999956, 0.4434300000000011, 0.013650000000001938, -0.6992700000000021, -0.34007999999999683, 0.05538000000000043, 0.4703399999999993, 0.5865600000000022, 0.31785000000000885, 0.9344399999999995, 0.7889700000000035, 0.016380000000001615, 0.1942200000000014, 0.4079400000000053, 1.269060000000005, 0.7601100000000018, -0.7721999999999944, -1.1879399999999922, -1.8770699999999971, -0.09594000000000058, 0.10413000000000316, 0.28665000000000695, 0.5070000000000014, 0.48126000000000424, -0.26831999999999656, -0.17861999999999778, -0.46175999999999995, 0.5190900000000056, 0.7074600000000029, 0.8607300000000038, 2.0880600000000014, 2.765880000000001, 2.2491300000000005, 2.6106600000000015, 1.2374700000000036, 0.538980000000004, 0.5210400000000046, 0.6996600000000015, 1.2327900000000005, 1.410630000000003, 1.9425900000000018, 1.4141400000000086, 0.49257000000000506, 1.1606399999999981], [0.0, 0.37635000000000574, 0.1727700000000043, -0.02495999999999121, -0.3946799999999948, -0.13376999999998862, 0.0015600000000048908, -0.13610999999998974, -0.7187699999999948, -0.670019999999993, -0.6356999999999915, 0.02106000000000563, 0.446940000000005, 0.4949100000000062, 3.075930000000006, 3.343080000000003, 2.2561500000000034, 0.7172100000000023, 0.181740000000012, 0.3724500000000024, 0.6282900000000087, 0.8182200000000073, 1.1598599999999992, 1.8326099999999999, 2.5560600000000013, 1.597830000000009, 1.8318299999999983, 0.9785100000000044, 1.2483900000000059, 0.0335400000000039, -0.7448999999999946, -0.30770999999999304, -1.3111799999999936, -1.4402699999999946, -1.305329999999993, -0.6150299999999911, -0.7916999999999912, -0.2690999999999928, -1.1087699999999958, -0.8494199999999936, -0.7979399999999934, -1.3345799999999928, -2.4597299999999924, -1.8193499999999934, -1.095899999999995, -0.04952999999999541, 1.1536200000000072, 0.7136999999999984, 0.2956200000000111, -0.12908999999998905, 0.5159700000000003, -0.0007799999999962282, -0.18056999999999945, 0.40482000000000706, -0.8626799999999952, -0.6696299999999957, -1.207439999999996, -0.3318899999999916, 0.4336800000000016, 0.9321000000000064, 0.30615000000000414, 0.4496700000000109, 0.6965400000000059, 0.7222800000000058, 0.5705700000000045, 0.6536400000000055, 0.545220000000004, -0.178229999999993, 1.4199900000000065, 2.880930000000003, 2.498730000000003, 1.6192800000000123, 1.1271000000000102, 0.569010000000004, -0.13493999999999584, -0.25856999999999086, 0.23790000000000333, -0.0643499999999948, 0.6637800000000089, 0.794040000000007, 1.4157000000000055, 1.118130000000006], [0.0, 0.9695400000000021, 0.6844500000000022, 1.139970000000003, 1.2409800000000013, 1.7386200000000003, 1.3022100000000028, 1.6157700000000015, -0.2371199999999991, -0.10647000000000206, 0.12792000000000003, 0.9383400000000024, 1.9956300000000011, 2.774850000000001, 3.945240000000001, 4.412460000000001, 3.437850000000001, 2.2035000000000013, 2.296320000000001, 2.637960000000001, 2.6231400000000002, 3.0505800000000014, 3.4737300000000007, 3.569670000000001, 3.7666200000000014, 3.329820000000002, 2.468700000000001, 2.792400000000001, 2.116530000000001, 0.5740800000000004, -0.09398999999999802, 0.018720000000002734, -0.3755699999999962, -1.044419999999998, -1.3076699999999999, 0.3186300000000024, 0.40520999999999896, 0.6719700000000013, -0.6435000000000004, -0.39624000000000015, -0.2858699999999952, -0.1251899999999977, -0.9695399999999985, 0.5198699999999992, -0.15131999999999968, 0.9090900000000026, 1.0175099999999992, 0.9929400000000008, 0.6481800000000004, 1.2737400000000019, 1.811160000000001, 1.9074900000000008, 2.1138000000000012, 0.47384999999999966, 0.12129000000000012, -0.2952299999999979, -1.405949999999998, -0.9211799999999992, 1.3735799999999996, 2.216760000000001, 1.4621100000000025, 1.5541500000000028, 1.2441000000000004, 1.1871600000000004, 0.6532500000000003, -0.9188400000000017, 0.8260199999999993, 1.4800500000000005, 1.8805800000000008, 1.9839300000000015, 1.624349999999999, 1.6766100000000008, 2.1290100000000005, 1.65906, 2.3271300000000013, 1.698450000000001, 2.269020000000001, 2.1099000000000028, 2.77719, 2.908620000000001, 3.6585900000000007, 1.8708300000000002], [0.0, 0.17784000000000028, -0.9839700000000006, -0.43797000000000064, 0.008970000000000242, -0.7530899999999994, -0.4309499999999987, -0.8693099999999994, -0.8997300000000017, -0.8260199999999998, -0.560429999999999, -0.15872999999999932, 0.7078499999999999, 1.3591500000000007, 1.25892, 2.33766, 1.6649100000000001, 1.3439399999999992, 1.215629999999998, 0.8338200000000004, 0.8646300000000001, 1.1169600000000004, 0.9145500000000013, 2.311529999999999, 1.9328399999999992, 2.441790000000002, 1.26906, 0.971100000000001, 0.9878700000000002, -0.40598999999999896, -0.5171399999999997, -0.11232000000000116, -1.2908999999999973, -1.4901899999999992, -0.9083100000000012, -0.6782100000000009, -0.94809, -0.5791499999999999, -0.4734599999999999, 0.04134000000000052, -0.7105800000000004, -1.4289600000000007, -1.1099400000000001, -0.31550999999999924, -0.38766000000000006, -0.38336999999999993, 0.21762000000000037, -0.8677500000000005, 0.02690999999999996, -0.17978999999999906, -0.8026199999999996, -1.1142299999999996, -0.85878, -1.269059999999999, -0.5635500000000004, -1.4344199999999996, -1.4157, -1.0452000000000001, 0.5998200000000002, 1.13607, 1.3252199999999998, 0.8373299999999995, 0.6169800000000003, 0.4539600000000007, 0.0280800000000003, -0.6048899999999995, 0.44772000000000073, -0.2098199999999989, 0.81744, 2.1457800000000007, 2.313479999999999, 1.0549500000000007, 0.7862400000000005, -0.38609999999999967, -0.9180599999999993, -1.1762399999999995, -0.034709999999999394, 0.13337999999999986, 0.14079000000000003, 0.3467099999999999, 0.4114500000000007, 1.935570000000001], [0.0, 1.321710000000001, 1.1341200000000007, 1.68246, 2.1235500000000007, 2.126280000000001, 1.4589900000000007, 1.232790000000001, 0.8732099999999999, -0.5713499999999994, -1.120469999999997, -1.0861499999999973, -0.4718999999999989, 1.3334100000000007, 2.80254, 4.05054, 3.6480600000000005, 2.92266, 2.43516, 2.3610600000000006, 2.5147200000000005, 2.0822100000000003, 2.3138700000000005, 2.58063, 2.6297700000000006, 3.046680000000002, 2.6504400000000006, 2.618070000000001, 2.4636300000000007, 1.6099200000000011, 0.5105100000000018, 0.04095000000000071, -0.6396000000000006, -0.8022299999999993, -0.5140200000000013, 0.07917000000000174, 0.16535999999999929, 0.21839999999999904, -0.4609800000000006, -0.9001200000000003, -1.4258399999999982, -0.9309300000000009, -0.7023899999999981, 0.44889000000000134, 1.4453400000000007, 1.4359800000000007, 2.4538800000000007, 1.8532800000000007, 1.5366000000000013, 1.1083800000000004, 0.40209000000000095, -0.0990599999999986, -0.2956199999999993, -1.150889999999999, -0.9902099999999998, -0.9995699999999998, -0.83304, -0.1907099999999995, 1.3260000000000014, 3.0509700000000004, 2.9273400000000005, 2.68398, 2.3247900000000006, 1.53621, 0.8806200000000016, 0.26481000000000066, 0.7425600000000013, 1.1196900000000012, 1.5639000000000003, 3.6238799999999998, 3.5568, 2.712840000000001, 2.4371100000000006, 2.0498400000000006, 0.9157200000000012, 0.8712600000000001, 1.0639200000000009, 1.5779400000000003, 0.29991000000000145, 1.0951200000000012, 2.1352500000000005, 2.486250000000001], [0.0, 0.8806200000000022, 0.21723000000000647, 0.9009000000000005, 1.1707799999999995, 0.7289100000000026, 0.5697900000000011, -0.02417999999999676, 0.3888300000000027, 0.48360000000000314, -0.9196199999999992, -2.0443799999999976, -1.3088399999999965, 0.6672900000000017, 1.7179500000000012, 1.556880000000003, 2.663310000000002, 3.0053400000000026, 2.6028600000000024, 3.237780000000002, 3.635970000000002, 3.197220000000003, 2.610270000000003, 3.0396600000000022, 2.853630000000002, 2.673840000000002, 3.0478500000000026, 2.0904000000000016, 1.4079000000000024, 0.8439600000000014, -0.6555899999999952, -0.6509099999999921, -1.533089999999996, -0.8022299999999989, -0.34475999999999907, -0.3494400000000004, -0.4040399999999953, -0.1220699999999959, -0.7874099999999955, -2.2128599999999956, -2.595060000000001, -2.8040999999999947, -1.1867699999999983, -0.027689999999997994, 0.17199000000000186, 0.48126000000000335, 0.512850000000002, 1.2706200000000016, 0.9188400000000008, -0.3490499999999983, -0.3217499999999949, -0.49101000000000106, -1.0362300000000007, -0.8014499999999969, -1.019460000000004, -1.3139099999999955, -0.41339999999999844, 0.1829100000000028, 1.855620000000001, 2.4172200000000017, 2.1212100000000023, 2.0096700000000025, 1.9656000000000033, 1.009710000000001, 0.15171000000000578, 0.020669999999998634, 0.2808000000000006, 0.6372600000000004, 1.8423600000000016, 3.315000000000002, 2.961270000000002, 2.1820500000000016, 1.405560000000002, 1.5202200000000028, 0.7718100000000025, 0.9317100000000038, 1.6598400000000009, 1.7269200000000016, 1.340820000000002, 2.3747100000000008, 2.1668400000000005, 2.1812700000000014], [0.0, 1.113450000000001, 1.13373, 1.3689000000000004, 1.61889, 0.9991800000000003, 1.3556400000000004, 0.4910099999999993, -0.09048000000000034, -0.919619999999999, -1.506180000000002, -1.9929000000000003, -1.9024200000000053, -0.4890599999999996, 1.0186800000000003, 1.3536900000000005, 1.2300600000000008, 1.4640600000000001, 0.8096400000000015, 1.6263, 1.81311, 1.4079000000000008, 0.9847500000000002, 1.8965700000000014, 2.5864800000000003, 2.621190000000002, 1.9999200000000004, 1.5798900000000002, 1.0069800000000002, 0.26403000000000065, 0.19265999999999983, -0.6629999999999983, -0.8860800000000004, -1.0927799999999983, -0.8385000000000009, -0.5339099999999997, 0.5814899999999988, -0.15210000000000035, -1.4687399999999997, -1.5857399999999993, -1.7873699999999972, -1.9948500000000016, -1.3302899999999995, -0.6259500000000016, 0.14781000000000133, 1.0104899999999988, 1.9024200000000007, 0.47970000000000035, 0.4071600000000005, -0.2585700000000004, -0.5050499999999989, -0.71058, -0.870480000000003, -1.5525899999999997, -1.406339999999999, -1.1462099999999997, -1.2912900000000007, 0.4056000000000023, 1.4589900000000005, 2.372370000000001, 2.24718, 1.8887699999999998, 0.7495800000000009, -0.1626299999999985, -0.4395300000000031, 0.002340000000000897, -0.010139999999999816, -0.17082000000000153, 1.1072100000000002, 3.223740000000002, 2.7319499999999994, 1.8369000000000004, 0.7554300000000002, 0.9305400000000004, 0.9258600000000012, 0.8587799999999989, 1.2885600000000006, 1.1661000000000006, 0.5261099999999991, 1.0370100000000004, 1.25814, 1.5502500000000001], [0.0, 0.59631, 0.3006900000000001, -0.03860999999999884, -0.44226000000000054, -0.8786699999999991, 0.7636199999999996, -0.4321199999999997, 1.237470000000001, 0.9243, -0.45123, -0.7413899999999993, -0.25583999999999973, 0.35723999999999945, 0.6836700000000002, 1.1840400000000004, 1.1239800000000004, 1.129050000000001, 1.7998499999999993, 1.64931, 1.653599999999999, 2.5299300000000025, 2.08026, 1.5268499999999983, 1.728089999999999, 1.8708300000000022, 1.8509400000000014, 0.9707100000000002, -0.05420999999999973, -0.7780499999999998, -0.5467800000000012, -0.8287499999999991, -0.9562800000000001, -1.3525200000000002, -1.8107700000000024, -1.3345800000000005, -0.6544199999999996, -0.21333, -1.0561199999999997, -2.29671, -1.18248, -1.3427700000000018, -0.2831400000000007, -0.9332700000000022, -1.6949399999999997, -0.9313200000000003, -0.797550000000001, -0.0019499999999995077, 0.3377400000000003, 0.3786900000000004, 0.060840000000000116, -0.5054399999999994, -0.5015400000000001, -1.4363699999999995, -0.7382699999999991, -0.6941999999999997, -0.0284699999999998, 0.8427899999999999, 2.2452299999999994, 1.7436900000000002, 1.9562400000000015, 1.0756200000000011, 1.2858300000000014, -0.23360999999999996, -0.8806200000000016, -0.8825700000000009, -1.4741999999999997, 0.37401000000000006, 2.003039999999999, 2.18868, 2.1048299999999998, 1.1442599999999998, 1.0526099999999992, 1.12827, 0.6696299999999997, 0.9024600000000003, 1.8181800000000001, 2.552550000000001, 2.134859999999998, 1.4597700000000002, 1.2230400000000006, 1.3798199999999998], [0.0, -0.1517099999999998, -0.9473099999999997, -0.8057399999999999, -0.19655999999999973, 0.11973000000000067, 0.07956000000000085, -0.6941999999999995, -0.23087999999999964, 0.018720000000000736, -1.2756899999999987, -2.907840000000001, -2.789279999999999, -1.8517200000000007, -0.72774, -0.9543299999999992, -0.3053699999999998, -0.4796999999999998, 0.9344400000000002, 1.419600000000002, 1.2686700000000022, 0.9465300000000005, 0.6817200000000005, 1.009319999999999, 1.7331599999999983, 1.2152399999999997, 1.2694499999999995, 0.79911, -0.09593999999999969, -0.3634799999999993, -1.0600199999999997, -1.4952599999999983, -1.5970499999999985, -2.4593399999999996, -1.908269999999999, -2.435159999999999, -1.3451099999999996, -1.7604600000000001, -3.0724199999999993, -3.41913, -3.2213999999999983, -2.9015999999999984, -2.8076100000000013, -1.8735600000000001, -1.6235699999999995, -0.6380399999999994, -0.3197999999999995, -0.3252599999999986, -0.47229000000000043, -1.3969799999999997, -1.6305899999999984, -2.207400000000001, -1.5287999999999986, -1.9129499999999997, -1.985879999999999, -1.2335699999999994, -2.21208, -1.75539, -0.008189999999999031, 0.20358000000000032, 0.31434000000000084, 0.023790000000000644, -1.2947999999999995, -2.0248800000000005, -3.3040799999999964, -3.237779999999998, -2.9659500000000003, -1.6762200000000003, -0.40676999999999974, 1.2078299999999997, 1.1898900000000003, 0.09165000000000079, -0.4009199999999994, 0.19734000000000074, -0.6165899999999986, -0.19889999999999908, 1.04988, 1.175459999999999, 0.6193200000000003, 0.4375800000000005, 0.010140000000000149, 0.7920900000000008], [0.0, 1.0728900000000046, 0.044459999999994615, -0.3131700000000004, -0.9730500000000011, -1.0015200000000006, -0.6860100000000013, -0.18368999999999946, -0.037050000000000693, -0.33422999999999803, -1.023749999999997, -0.9839700000000016, -1.1692200000000001, -1.3603200000000015, -0.12792000000000048, 0.45239999999999725, -0.035490000000003796, 0.5105100000000027, 1.0728900000000028, 0.5444400000000051, 1.0490999999999984, 1.9035899999999986, 1.5541500000000008, 1.526069999999999, 1.6083600000000011, 1.1302199999999987, 0.6009899999999995, -0.05849999999999955, -0.5019299999999998, 0.181350000000001, -1.5911999999999984, -1.1953500000000017, -0.8244600000000015, -1.7429100000000006, -1.9172399999999996, -2.1625499999999995, -1.9191900000000004, -2.0514000000000014, -2.652, -3.3395699999999993, -2.687100000000002, -3.00183, -1.8096000000000014, -1.8146700000000004, -2.3910899999999993, -1.508519999999999, -0.9379499999999972, -0.361920000000004, -0.34475999999999996, -0.43797000000000086, 0.3420300000000003, -1.3513499999999992, -1.2011999999999978, -0.938730000000001, -0.5350800000000002, -1.0810800000000014, -1.3166399999999991, -1.4348099999999997, 0.28704000000000107, 1.7643599999999946, 1.0518300000000016, 1.2663299999999946, 1.271010000000003, -0.4598099999999956, -2.1266699999999994, -2.2214400000000003, -1.6087499999999992, -0.06278999999999435, 0.9492599999999998, 1.0444199999999944, -0.15015, -0.30420000000000247, -0.2944500000000012, -0.6587099999999988, 0.10022999999999804, 0.6376500000000025, 1.6730999999999954, 2.36301, 0.8326499999999983, 1.0853699999999984, 1.4851199999999976, 0.27143999999999746], [0.0, 0.027300000000000546, -0.5631600000000001, -0.21879000000000026, 0.3252599999999999, 0.06707999999999958, -0.5655000000000006, -0.13493999999999962, -0.13493999999999995, 0.3513900000000001, -0.7515300000000005, -1.3973699999999991, -1.44027, -1.5728699999999995, -2.0104499999999996, -2.3996700000000013, -0.6934200000000003, 0.12752999999999948, 0.44499000000000044, 0.3611400000000007, 0.9512099999999997, 0.6189299999999991, 1.1485500000000013, 1.762410000000002, 2.854020000000001, 1.7920499999999977, 1.9332300000000016, 0.33267000000000135, 0.31512000000000095, 0.8088600000000004, 0.74607, -0.0974999999999997, 0.15482999999999947, -0.3837599999999998, -0.8408399999999998, -2.1192600000000006, -2.514330000000001, -2.7089399999999992, -2.8294499999999996, -2.4577800000000005, -2.5779000000000014, -1.3377000000000003, -1.2132899999999989, -0.48828000000000027, -1.0381799999999994, -2.3969400000000007, -1.8368999999999982, -0.8946599999999998, -1.24254, -0.5151899999999994, -0.5549700000000003, -1.1688300000000003, -0.49218, -0.007799999999999807, 0.12713999999999992, 0.24960000000000004, -0.05226000000000042, 0.5214300000000001, 1.0947300000000009, 1.6157700000000015, 1.8045300000000035, 1.7635800000000008, -0.005459999999999798, -1.3544699999999992, -2.7097199999999986, -2.9920800000000005, -2.0740199999999995, -0.97383, 0.9430200000000004, 1.4145299999999994, 0.33033000000000046, 0.7211099999999995, 1.1052599999999997, 1.8396299999999972, 1.809990000000002, 1.686749999999998, 1.808429999999998, 2.5564500000000034, 2.3407799999999996, 2.196480000000001, 2.770950000000001, 2.762370000000004], [0.0, 0.04991999999999941, -0.6641700000000004, 0.1669200000000004, -0.039389999999999925, 0.47658000000000045, 0.6446700000000014, 0.5795400000000006, 2.035020000000001, 0.930539999999999, 0.0011699999999995603, -0.10685999999999884, -0.6197099999999995, 0.2020200000000003, 0.6185400000000005, 1.4679600000000008, 1.29519, 2.0092800000000013, 2.8848299999999965, 2.2031099999999997, 1.9468800000000008, 2.01006, 2.6543399999999986, 2.9277299999999977, 3.000270000000004, 1.3919100000000035, 0.6216600000000001, -0.4403100000000003, 0.38064000000000076, -0.4914000000000002, 0.31707000000000063, 1.0760100000000008, 0.8338199999999989, -0.8611200000000003, -0.13377000000000006, -0.19148999999999983, -1.3244399999999994, -0.7043400000000002, -0.9274200000000004, -1.65672, -2.5856999999999997, -2.6001299999999983, -1.2534599999999994, -0.6396, -0.11855999999999955, -0.18486000000000002, -0.4976399999999998, 0.2901600000000011, 0.7230599999999985, 1.2464400000000009, 0.87399, 0.09242999999999957, 0.060060000000000224, -0.26597999999999966, -0.2854800000000002, -0.23048999999999875, -0.3322799999999998, 0.18992999999999993, 0.9594000000000005, 1.7698200000000022, 1.7741099999999965, 2.11653, 1.671149999999998, 0.49296000000000095, -0.13572000000000062, 0.022619999999998974, 1.1820899999999994, 1.1859900000000014, 2.220660000000004, 1.8150599999999988, 0.8583900000000015, 0.9469200000000011, 0.5300100000000005, -0.4325099999999999, 1.2308399999999977, 0.8934900000000012, 1.4804399999999986, 2.299830000000002, 2.914080000000001, 1.4679599999999995, 1.7354999999999998, 1.7425200000000027], [0.0, 0.35099999999999965, -0.49218000000000073, -0.5229899999999994, -1.440659999999999, -1.3018200000000002, -1.1489399999999992, -0.33929999999999993, 0.33110999999999946, 0.61113, 0.0358799999999998, -1.8798000000000008, -1.7409599999999972, -0.8638500000000022, -0.1864199999999998, -0.09281999999999968, 0.8322599999999998, 1.0253099999999995, 0.2671500000000001, 0.29678999999999933, 0.10958999999999997, 0.6169799999999999, 0.7503599999999997, 1.54284, 1.3767, 0.3946799999999996, -0.28314000000000106, -0.6185399999999994, -0.1645799999999995, -0.7359300000000017, -0.034710000000001795, -0.446160000000001, -0.3135600000000005, -0.4793099999999979, -1.256969999999999, -1.5600000000000014, -1.4301300000000028, -1.8930600000000002, -2.3731500000000008, -2.4683100000000016, -3.0334199999999996, -2.256540000000003, -1.5958799999999993, -1.5748199999999994, -1.627080000000002, -2.32401, -1.6738799999999991, -0.9356099999999994, -0.24998999999999927, -0.49178999999999995, -0.15912000000000126, -0.3564600000000002, -0.5951400000000011, -0.6165900000000017, -0.4562999999999997, -1.4757600000000033, -2.024490000000005, -1.4601600000000006, -0.6158099999999989, -0.52572, 0.21020999999999979, 0.3045899999999996, -0.5729100000000018, -1.0448099999999996, -1.2842700000000011, -1.5159300000000013, -0.48009000000000013, 0.5947499999999999, 0.5986499999999997, 0.20201999999999998, -1.653989999999998, -1.4441699999999988, -0.88062, -0.027690000000000214, -0.8958299999999995, 0.1700399999999992, 0.9512099999999994, 1.4137499999999996, 0.96174, 1.0050299999999992, 0.4551299999999995, 0.6641699999999997], [0.0, 0.007020000000008686, -0.21488999999998093, -0.38960999999999224, -0.5147999999999833, 0.15990000000001015, 0.26325000000001975, 0.6364800000000139, 0.3576300000000181, 0.22698000000001528, 0.2562300000000093, 0.8439600000000151, 0.03315000000001245, 0.29952000000001533, -0.030029999999984902, -0.31901999999999386, -0.1809599999999909, -0.6080099999999931, 0.33735000000001136, 0.2827500000000107, 0.0889200000000141, 0.2570100000000153, -0.8104199999999864, -1.0100999999999898, -0.78467999999999, -1.0241399999999787, -0.8700899999999816, -1.7319899999999837, -1.5904199999999857, -2.1492899999999855, -2.625869999999983, -1.9574099999999834, -1.999139999999982, -2.3844599999999803, -2.083379999999984, -1.0678199999999904, -1.9445399999999795, -1.8626399999999839, -1.6032899999999861, -0.8700899999999931, -0.6427199999999837, -0.8618999999999817, -1.3696799999999838, -1.0424699999999874, -1.2713999999999812, -0.6411599999999842, -0.409499999999988, -0.46955999999998266, 0.029640000000013877, 1.1310000000000082, 0.6708000000000105, -0.17627999999998512, -0.37634999999998264, -0.008189999999988373, -1.0767899999999866, -1.148549999999986, -1.1196899999999896, -1.5908099999999799, -1.5209999999999813, -1.3887899999999833, -1.3950299999999913, -2.096249999999986, -1.9909499999999802, -1.500329999999984, -1.691819999999983, -1.4004899999999871, -2.101709999999982, -1.7752799999999835, -1.724579999999988, -1.7292599999999823, -0.8735999999999926, -1.2600899999999902, -1.710539999999983, -1.6200599999999818, -1.151279999999982, -1.3244399999999832, -2.073629999999988, -0.9340499999999823, -0.8423999999999863, -0.8919299999999852, -1.411019999999981, -1.3509599999999828], [0.0, 0.8201699999999992, 0.827189999999999, 1.2936300000000012, 1.312350000000003, 0.8825700000000003, 0.03626999999999381, -0.0694199999999996, 1.3646100000000008, 2.1691799999999963, 2.3575500000000034, 1.99953, 1.5580500000000015, 1.0611899999999972, 1.2987000000000002, 1.819739999999996, 3.1137599999999974, 2.216369999999995, 2.185169999999994, 1.7031299999999954, 1.8060899999999958, 1.389179999999996, 2.5381199999999877, 2.5599599999999905, 2.617289999999997, 1.4878499999999946, 1.3821600000000007, 1.6883099999999969, 2.11965, 1.6356599999999961, 1.8415800000000022, 1.1033100000000027, 0.80769, 1.432470000000004, 1.7230199999999964, 2.063880000000002, 2.9152499999999986, 1.8248100000000003, 1.4363700000000028, 0.6212700000000027, 0.985529999999998, 0.830309999999999, 1.0077599999999989, 1.395029999999993, 1.4593799999999986, 0.6064499999999988, 0.49413000000000107, 0.950039999999996, 1.4383200000000045, 0.930540000000001, 0.409889999999999, 1.0537799999999988, 1.6805099999999973, 1.6707600000000005, 1.4231100000000012, 0.43913999999999787, 1.0366200000000005, 1.760069999999999, 2.7159599999999973, 2.846999999999996, 2.568539999999998, 2.3977199999999996, 1.4925299999999977, 0.876329999999998, 1.7947799999999994, 1.8201299999999945, 2.016299999999995, 2.4230699999999965, 2.5420200000000035, 1.6582799999999969, 0.6555899999999979, 0.6922500000000009, 0.3490499999999974, 0.6633899999999961, 1.3825500000000028, 1.5334799999999928, 3.139499999999998, 2.7175199999999977, 2.774849999999999, 2.6383499999999973, 3.145349999999996, 3.5700599999999936], [0.0, -0.08813999999999522, -0.5838299999999972, -0.10334999999999628, -0.3474899999999961, 0.21801000000000492, 0.7959900000000046, 1.1797500000000052, 0.7749300000000043, 0.0417300000000016, -0.06785999999999337, -0.4640999999999953, -0.5366399999999978, -0.7515299999999954, 0.44538000000000144, 1.4176500000000023, 0.9165000000000059, -0.3693299999999957, -1.0295999999999952, -0.46448999999999563, -0.16574999999999696, 0.6232200000000061, 0.9438000000000053, 1.1263200000000024, 0.7047300000000036, -0.002339999999997122, -0.915329999999996, -1.331849999999996, -0.4913999999999965, -0.9309299999999967, -1.1497199999999956, 0.5717400000000041, 0.32565000000000266, 0.7761000000000058, 0.18564000000000425, -0.34748999999999675, -0.18953999999999782, -0.5073899999999953, -0.5284499999999976, -1.6840199999999963, -1.6571099999999963, -0.9551099999999968, -0.7616699999999967, -0.3782999999999972, -0.3049799999999976, -0.813539999999997, -1.2538499999999966, -1.5365999999999957, -0.29990999999999657, 0.3404700000000016, 0.12246000000000246, -0.13493999999999495, -0.6832799999999959, -1.3899599999999963, -1.2635999999999967, -1.7050799999999964, -2.985449999999997, -2.450369999999996, -1.3341899999999967, -1.0108799999999967, -0.44303999999999766, 0.40248000000000506, -0.21137999999999701, 0.13806000000000163, -0.21059999999999635, -0.2211299999999965, 0.12948000000000492, 1.1949600000000058, 0.2039700000000062, 0.5955300000000037, -0.10802999999999541, -0.4083299999999963, -1.6496999999999966, -1.378649999999996, -1.3439399999999955, -0.6493499999999968, -0.45980999999999694, 0.5853900000000056, 1.0190700000000015, 1.5806700000000058, 1.4114100000000045, 1.6949400000000039], [0.0, 0.3981899999999987, 0.091650000000004, 0.0939899999999998, 0.12831000000000437, -0.3287700000000022, 0.45357000000000536, 0.8092500000000031, 2.1305699999999996, 1.9191900000000017, 1.3080599999999993, 1.1867700000000045, 1.0019100000000014, 1.512030000000002, 1.1637600000000017, 1.3232699999999973, 1.629029999999998, 0.6126899999999988, 0.23360999999999876, 0.07526999999999795, 0.3942900000000007, 0.713309999999999, 1.0857599999999996, 1.142700000000005, 1.8708300000000007, 1.4344200000000011, 1.2062700000000044, 0.8759400000000008, 0.5093400000000008, 0.3572400000000071, 0.04485000000000383, 0.1626300000000036, -0.04250999999999916, 0.12128999999999923, -0.019110000000000404, 0.5662800000000052, 0.7523099999999996, -0.2624699999999942, -0.6255599999999966, -0.7437300000000011, -0.2460899999999988, -0.19890000000000008, -0.5401500000000041, 0.1751099999999992, 0.410280000000002, 0.3147300000000026, 0.23790000000000155, -0.14781000000000244, 0.47892000000000134, 1.5436199999999984, 1.9617000000000044, 1.0830299999999982, 0.6099599999999965, -0.42315000000000325, -0.75075, -0.952770000000001, -0.8962200000000005, -0.1376699999999973, 0.2507700000000037, 1.0190700000000028, 1.5479099999999995, 1.4250600000000002, 1.3252200000000025, 1.5627300000000002, 1.6407299999999987, 1.168830000000006, 1.8021899999999977, 2.238210000000001, 2.6660400000000006, 1.4703000000000013, 0.7796100000000079, 0.7328100000000015, -0.3100499999999915, -0.10179000000000205, 0.08814000000000366, 0.29874000000000667, 0.5670600000000032, 1.0931700000000006, 1.4453399999999963, 1.4652300000000027, 2.0081100000000047, 2.152800000000003], [0.0, -0.3779100000000013, 0.6427199999999986, 1.256189999999999, 1.4133600000000015, 2.3392199999999983, 2.6601899999999947, 1.6672500000000008, 1.7468099999999998, 2.051789999999998, 2.0049899999999994, 1.3287300000000026, 1.9628700000000003, 2.5642500000000013, 2.50497, 2.9331899999999997, 2.175420000000001, 1.3860599999999967, 1.3494, 0.4878899999999977, 0.7737599999999973, 0.4648799999999984, 0.9133799999999994, 1.4999399999999998, 1.9246500000000013, 1.4745899999999994, 1.2986999999999986, 0.8018399999999983, 1.368899999999998, 1.7202899999999979, 0.9687600000000007, 0.6130799999999998, 0.44030999999999865, 0.5990399999999989, 0.7417799999999983, 1.9207499999999962, 2.1286199999999997, 1.0877099999999984, 0.3186299999999993, 0.34241999999999906, 0.5311799999999984, 0.11231999999999975, 1.4391000000000018, 1.4297399999999982, 0.8065199999999988, 0.51597, -0.5729100000000007, 0.909480000000001, 1.6103099999999977, 1.80414, 2.2807200000000005, 2.1020999999999965, 1.427399999999999, 0.4282199999999994, 0.5658900000000002, -0.8084700000000014, -1.2269400000000015, -0.9707100000000004, 0.15170999999999935, 1.0171199999999965, 1.9905599999999983, 1.6173299999999988, 2.5115999999999987, 3.6496199999999996, 2.7768000000000015, 1.8248099999999996, 2.6028600000000033, 3.3149999999999933, 3.5489999999999977, 2.9086199999999973, 1.699619999999997, 1.362269999999999, 0.4785299999999999, 0.47502, 0.3049799999999987, 0.9781199999999985, 1.6793399999999974, 2.0049899999999967, 2.2350900000000005, 2.3981100000000026, 1.6816799999999994, 2.2662900000000015], [0.0, 0.07643999999999851, -0.5257200000000017, -0.532740000000002, -1.0065900000000019, -1.2304500000000005, -0.8373300000000015, 0.14117999999999808, 0.9570599999999989, 0.781170000000003, 0.8217299999999996, 1.3412100000000047, 1.3661699999999986, 0.4512300000000007, 0.30575999999999937, 0.7807799999999987, 0.7694700000000005, -0.47579999999999956, -0.48828000000000116, -1.301040000000001, -2.1960900000000003, -1.7487600000000003, -1.1664900000000002, 0.3408599999999997, 0.3131699999999995, -0.39273000000000247, -0.5194800000000015, -0.43914000000000075, -0.42080999999999946, -0.239850000000001, 0.09008999999999867, 0.6544200000000004, 0.3615299999999988, -0.4422600000000003, -1.3786500000000013, -0.4215900000000006, 0.15872999999999804, -0.6501300000000001, -1.3993200000000008, -1.8216900000000011, -2.1266700000000003, -1.118520000000001, -1.870830000000001, -1.010100000000001, 0.9239100000000011, 0.2757300000000007, 0.6895199999999968, 1.0241399999999983, 1.1309999999999993, 1.2678899999999973, 0.4769699999999988, 0.32525999999999833, 0.7055100000000003, 0.23009999999999708, -0.5573100000000022, -1.5245100000000011, -2.2526400000000004, -0.8037900000000029, -0.13026000000000115, -0.5850000000000004, 0.8271899999999972, 1.2550200000000031, 1.1914499999999997, 1.7000099999999967, 1.2565800000000005, 0.3923399999999999, 0.9293699999999974, 1.199639999999996, 1.0206299999999993, 0.3513900000000003, -0.028860000000001218, -0.3451500000000014, -0.7070700000000001, -0.35022000000000153, -0.4391400000000021, 0.40013999999999994, 1.2558000000000047, 1.2257700000000016, 0.23789999999999845, 0.021450000000000635, -0.2683200000000001, 0.4949099999999973], [0.0, 0.2640299999999973, 0.40247999999999795, 1.1454300000000037, 1.3919100000000038, 1.3240500000000157, 0.8010600000000041, 1.1540099999999995, 1.1228100000000065, 1.1465999999999985, 1.3895700000000009, 1.2288900000000043, 0.6778200000000076, 1.4387100000000048, 2.023709999999996, 2.449199999999996, 2.157870000000008, 1.4972100000000053, 0.49686000000000075, 0.7098000000000058, 0.9523800000000033, 1.464840000000005, 1.2464399999999944, 1.5958799999999966, 1.5194400000000012, 1.3018200000000046, 0.30693000000000836, 0.8619000000000074, 0.5795400000000077, 0.17978999999999346, 0.28704000000000374, -0.0756599999999974, -0.012479999999987612, 0.10920000000000574, 1.0943400000000052, 1.4862900000000012, 2.1754200000000026, 1.680120000000004, 0.5541899999999993, 0.7101900000000096, -0.4621500000000003, -0.04406999999999339, 0.5046600000000065, 0.9075300000000004, 0.49647000000000485, 0.1357200000000054, 0.09126000000000456, 0.6193199999999983, 1.6071900000000028, 1.3419900000000045, 2.0564700000000027, 1.087710000000003, 0.4867200000000036, -0.20084999999999198, -0.7823399999999987, -0.8033999999999972, -1.117739999999995, -1.0073699999999945, -0.1095899999999963, -0.11115000000000208, 0.7168200000000029, 1.0245300000000066, 1.7526600000000032, 2.488200000000008, 2.7674400000000077, 2.094300000000004, 1.423109999999995, 1.7725500000000043, 2.493270000000013, 2.8068300000000015, 2.746380000000009, 1.1044800000000041, 1.3029900000000083, 1.331850000000001, 0.8170500000000098, 1.8805800000000055, 2.2304100000000027, 1.9035899999999977, 1.7924399999999974, 1.6099199999999998, 1.0299899999999962, 0.9613499999999977], [0.0, -1.2429300000000003, -0.8474699999999995, -0.2226900000000005, -0.5892900000000001, -0.12362999999999968, -0.2835300000000016, -0.1899300000000015, 0.3155099999999986, 0.6368699999999988, 0.3818100000000002, 0.9531599999999996, 0.7538699999999993, 0.4609799999999995, 1.81662, 1.6204499999999993, 1.6496999999999988, 0.4442099999999993, 0.41573999999999967, -0.29328000000000176, -0.5970900000000015, -0.4644900000000005, -0.25857000000000196, -0.13610999999999995, 0.7784399999999995, 0.14274000000000053, -0.8295300000000041, -0.45084000000000235, -0.10608000000000173, -0.24492000000000091, -0.7784399999999998, -0.9562800000000014, -1.308059999999999, -1.5451800000000007, -2.1684000000000005, -1.428180000000002, -1.0190699999999988, -1.795170000000002, -1.97106, -3.36882, -2.8091700000000004, -1.6555500000000007, -0.9956699999999974, -0.8388900000000006, -0.6450600000000009, -0.42120000000000046, -1.0623600000000004, -0.35099999999999887, -0.5658900000000013, -0.6321900000000014, -0.5081700000000022, 0.33071999999999946, -0.45552000000000215, -1.1481599999999985, -2.7631500000000018, -4.15935, -4.029480000000008, -3.0669599999999986, -1.5728700000000009, -1.448459999999999, -0.8388900000000001, 0.1415699999999993, 0.7850699999999994, 1.762799999999999, 1.4675699999999985, 1.16532, 1.2655499999999993, 0.4325099999999994, 0.9336599999999993, 0.3712799999999994, -0.3970200000000004, -0.9968400000000006, -0.8057399999999988, -0.8771100000000023, -0.9110399999999985, -0.6134700000000013, -0.16302000000000105, -0.2320500000000003, -0.13298999999999994, 0.01833000000000018, -0.06903000000000148, 0.5171399999999999], [0.0, -0.008189999999999253, 0.35763000000000056, 0.419250000000001, 0.33150000000000057, -0.11426999999999965, -0.27572999999999903, -0.6821099999999984, 0.43797000000000197, 0.03822000000000059, 1.1813099999999992, 0.8712600000000013, -0.20708999999999744, -0.41300999999999843, -0.46409999999999907, 0.3966300000000005, 0.6774300000000009, 0.38766000000000145, 0.6384300000000014, 0.05148000000000019, 0.9395100000000005, 0.28977000000000075, 0.4602000000000015, 0.5378099999999999, 1.0085400000000015, 0.8478600000000016, 0.7398300000000004, -0.5148000000000001, -0.49373999999999973, -0.9827999999999992, -0.6579299999999993, 0.09594000000000014, -0.14507999999999943, 0.16692000000000173, -0.8119799999999997, -0.9083099999999993, -0.09048000000000012, -0.2223000000000006, -0.27260999999999924, -0.5175299999999998, -1.0947299999999993, -1.16688, -1.0459799999999997, -0.7234499999999993, 0.41808000000000156, 0.09633000000000091, -0.5042699999999996, 0.26910000000000056, -0.16262999999999894, 0.12206999999999946, 0.36114000000000135, 0.005070000000001018, -0.12362999999999902, -0.3162899999999996, -1.063919999999999, -2.35482, -1.7468099999999995, -1.704299999999999, -1.1844299999999996, -0.7944299999999996, -0.8404499999999996, -0.42705000000000026, 0.44733000000000134, 2.212469999999996, 2.185559999999999, 0.18993000000000193, 0.7987200000000028, 1.2948000000000028, 1.4117999999999984, 0.5846100000000016, 0.5327400000000011, -0.21371999999999913, -0.5557499999999995, 0.07917000000000063, -0.47228999999999954, 0.023789999999999534, 0.8884200000000015, 0.9867000000000006, 0.8150999999999999, 0.030420000000000558, -0.024179999999999424, 0.2441400000000007], [0.0, -0.45005999999999435, -0.9301499999999958, -0.7090199999999944, -0.7027799999999971, -1.745249999999996, -2.416049999999993, -1.329119999999997, -1.1387999999999856, 0.25154999999999816, 0.7995000000000028, 1.289340000000001, 0.48009000000000945, 0.7698600000000031, 1.3614900000000008, 1.1579100000000042, 1.269840000000003, 2.1262799999999986, 0.947310000000007, 0.24920999999999882, -0.014819999999995837, -0.0023399999999940135, 0.3400800000000075, 0.4059900000000045, 0.28626000000000307, -0.8689199999999904, -0.7667400000000022, -0.5276699999999952, -0.7940399999999936, -1.6348799999999981, -0.65442, -0.6867899999999958, -0.23672999999999966, -1.398539999999997, -2.0923500000000006, -2.2148099999999893, -1.3470599999999964, -1.6621799999999975, -1.4706899999999878, -1.1785799999999975, -0.8342099999999908, -0.5066099999999931, -0.8903700000000008, -1.5260699999999954, -1.1122799999999966, -1.1325600000000025, -1.117739999999988, -1.0884899999999993, -2.226899999999989, -0.9749999999999917, 0.301470000000009, 0.12129000000000367, 0.8053500000000033, 0.4582500000000085, -0.23048999999999342, -1.1543999999999972, -1.7963399999999945, -1.2803699999999942, -1.0011299999999963, -0.9746099999999949, -0.0955499999999958, 0.01949999999999985, 1.1528400000000012, 0.598650000000009, 0.03315000000000001, -0.5881199999999946, -0.32330999999999577, 0.16302000000000572, 0.695369999999996, 0.2928900000000043, -0.2047499999999971, 0.27339, 0.3057600000000038, 0.5183100000000067, -0.43133999999999784, -0.9972299999999956, -0.6399899999999965, 0.008970000000013023, -0.5218199999999928, -1.0822499999999957, 0.0826800000000043, 0.7117500000000057], [0.0, -0.011700000000000377, 0.8985599999999989, 1.5174899999999987, 0.02027999999999963, 0.11699999999999999, 1.0217999999999994, 1.2386399999999993, 1.0494899999999987, 0.07526999999999939, 0.7916999999999994, 0.6466199999999989, -0.21333000000000135, -0.8548800000000014, -0.5101200000000019, -0.05928000000000089, -0.8895900000000001, -0.22932000000000174, 0.39389999999999964, 0.8357699999999999, 1.3755299999999988, 1.6660799999999998, 1.249169999999999, 1.5619499999999993, 1.293239999999999, -0.19772999999999996, 0.029640000000000555, 0.6115199999999992, -0.25818000000000174, -0.10959000000000019, 0.9387299999999987, 0.9551099999999985, 0.6891299999999987, 0.5795399999999994, 0.6282899999999991, 0.23009999999999925, 1.2300599999999995, 0.5803199999999992, 0.007019999999998916, 0.36659999999999865, -0.046800000000001174, 0.07019999999999915, 0.234389999999999, -0.4219799999999998, 0.2546699999999988, 0.032369999999998456, 0.9430199999999989, 0.8299199999999991, 0.34475999999999896, 1.0604099999999987, 0.6953699999999996, 1.5022799999999994, 1.250729999999999, -0.07293000000000005, -0.70434, -1.4909700000000004, -0.06357000000000113, 0.34358999999999845, -0.5615999999999999, -0.1864200000000008, -0.1064700000000004, 0.4984199999999992, 0.8228999999999991, 1.0861499999999993, 0.6704099999999998, 0.6700199999999986, 1.7249699999999992, 1.7986799999999996, 1.9679399999999996, 2.041259999999999, 1.8466499999999988, 1.2733499999999993, 0.9336599999999999, 1.575989999999999, 1.261649999999999, 1.476929999999999, 1.5073499999999984, 1.2994799999999989, -0.33033000000000123, -1.2019800000000027, 0.09242999999999868, 0.5062199999999991], [0.0, -0.21410999999999947, -0.19850999999999852, 0.42003000000000057, 1.3022099999999999, 1.0487099999999991, 0.004680000000000462, -0.44264999999999965, -0.10022999999999782, 0.5093400000000019, 1.7405699999999993, 0.67509, 0.5249400000000017, 0.17043000000000097, 0.4836000000000005, 0.9921600000000004, 1.678950000000002, 1.7136600000000006, 2.5833600000000025, 1.854450000000001, 0.6208800000000019, 0.7374900000000002, 0.4052100000000005, 0.83694, 1.5209999999999988, 1.4593800000000015, 1.8287100000000007, 1.7565600000000015, 0.7803900000000004, -0.2675399999999991, 0.1895400000000016, 1.0920000000000003, 0.6228299999999996, 0.012480000000000047, -0.26949000000000034, -0.35996999999999746, 0.7413900000000009, 0.6302399999999999, -0.3708900000000003, 0.43718999999999864, -0.35411999999999955, -0.3588, -0.3989699999999994, 0.4516200000000006, 0.8076900000000005, -0.6060599999999993, -0.8384999999999991, -0.19655999999999962, 0.18954000000000004, 1.2487800000000002, 1.19418, 1.1805300000000007, 1.870050000000001, 1.7569499999999996, 0.1255800000000009, -1.1930099999999997, -1.0112699999999997, -0.5378099999999995, -0.1587299999999996, -1.1727299999999985, -0.7651799999999991, 0.6271200000000003, 1.0444200000000008, 1.5943200000000017, 1.2869999999999988, 1.106430000000003, 0.5959199999999991, 1.2327900000000007, 1.3767000000000016, 2.0911800000000014, 1.7522700000000013, 0.9835800000000015, 0.6165900000000006, 1.0140000000000022, 0.7078500000000012, 0.45668999999999915, -0.4637099999999994, -0.37673999999999985, -0.2550599999999992, 0.6407700000000005, 0.8057399999999999, 0.6158100000000022], [0.0, -0.2769000000000075, 0.25622999999999196, 1.3220999999999945, 1.0697699999999948, 1.1809199999999915, 0.64427999999999, 0.5502899999999946, 0.9387299999999925, 1.2764699999999918, 1.7698199999999935, 1.5241199999999928, 1.606019999999993, 1.108379999999995, 0.47930999999999324, 0.08813999999999123, -0.20280000000001053, -0.3373500000000087, 0.539369999999991, 1.179359999999991, 1.1267099999999948, 0.8813999999999917, 0.2187899999999936, 0.3981899999999938, 1.7206799999999922, 2.150849999999993, 1.6067999999999967, 1.1426999999999925, 0.8681399999999919, 1.4156999999999913, 0.5752499999999925, 0.517139999999995, 1.232399999999993, 1.0233599999999914, 0.7994999999999939, 0.6559799999999933, 2.0970299999999944, 2.3337599999999936, 1.8201299999999931, 1.0069799999999898, 0.6037199999999947, 0.1380599999999914, 0.2609099999999902, 0.594359999999992, 1.887599999999996, 2.170349999999992, 1.733549999999993, 0.37322999999999373, 0.934829999999994, 1.2698399999999963, 2.1598199999999945, 1.8758999999999957, 1.7698199999999926, 1.4523599999999965, 0.8618999999999937, 1.1703899999999936, -0.1255800000000118, -0.17433000000000742, -0.3447600000000062, -0.49803000000000885, -0.15561000000000558, 0.3580199999999931, 1.3205399999999927, 2.2245599999999945, 2.201549999999994, 1.371239999999998, 1.852499999999996, 1.2916799999999942, 2.1091199999999937, 0.9656399999999925, 1.6122599999999916, 1.4835599999999904, 1.427009999999993, 0.6005999999999929, 1.8700499999999938, 1.0448099999999916, 0.9215699999999942, 1.0167299999999972, 0.48515999999999027, 1.1391899999999935, 1.1715599999999884, 1.1840399999999964], [0.0, -0.1782300000000009, 0.7246199999999989, 0.5912399999999989, 1.337309999999999, 1.3958099999999996, 1.0779599999999991, 1.0276499999999993, 0.9519899999999992, 2.0502300000000013, 1.4999399999999992, 2.039699999999999, 1.005809999999999, 0.9129899999999986, 0.872039999999999, 0.670019999999999, 0.04640999999999884, 0.8583899999999995, 2.298269999999998, 2.2596599999999993, 1.4219399999999989, 1.4340299999999986, 1.2706199999999992, 1.0163399999999994, 1.343939999999999, 2.065049999999999, 1.6036799999999993, 1.6114799999999985, 0.9636899999999992, 0.6368700000000007, 1.0526099999999994, 1.92504, 1.8306599999999995, 1.7959499999999995, 1.0420799999999992, 1.405949999999999, 2.1800999999999995, 2.302949999999998, 0.5296199999999989, 0.009359999999998703, -0.3322800000000016, 0.05030999999999808, 0.5869499999999984, 1.7620199999999988, 1.4531399999999994, 1.4991599999999994, 1.3915200000000005, 1.5482999999999987, 1.5326999999999993, 1.8758999999999997, 1.4387099999999997, 1.4858999999999993, 2.4390599999999987, 1.7971199999999983, 1.4032199999999995, 1.6656899999999988, 0.02027999999999841, 0.7055099999999999, 0.8287499999999991, 1.4406599999999994, 0.8283599999999998, 0.746849999999999, 1.2557999999999991, 1.1816999999999989, 1.9234799999999979, 1.8162299999999978, 1.3731899999999992, 1.1430899999999995, 1.7686499999999987, 3.42108, 3.7580400000000007, 2.601299999999999, 2.1878999999999986, 2.0962499999999995, 2.116529999999999, 0.6197099999999987, 0.2137199999999989, 0.14390999999999832, 1.6048499999999992, 1.2304499999999992, 1.559219999999999, 1.6212299999999995], [0.0, 0.297569999999995, 0.8252399999999986, 0.9597899999999933, 2.043209999999995, 2.0471099999999933, 1.731209999999996, 2.0845499999999957, 2.389919999999996, 3.162899999999997, 2.885999999999994, 1.976519999999998, 1.0451999999999932, 1.5147599999999963, 0.3794699999999942, 0.529619999999996, 0.8626799999999935, 0.8654099999999936, 0.5791499999999967, 0.12791999999999693, 0.8080799999999924, 2.093519999999992, 1.9453199999999962, 1.9137299999999944, 2.3294699999999935, 1.725749999999993, 1.081079999999992, 1.362659999999995, 0.6867899999999931, 0.00389999999999624, -0.09750000000000725, 0.9539399999999945, 0.9519899999999923, 1.477709999999996, 0.8681399999999946, 1.814669999999993, 2.184779999999996, 1.6134299999999904, 1.5568799999999956, 2.043599999999997, 0.973829999999996, 1.6305899999999935, 1.0510499999999978, 1.5564899999999962, 1.7822999999999984, 2.0303399999999954, 1.428179999999995, 1.2164099999999975, 0.7827299999999986, 1.295189999999994, 1.7998499999999966, 1.964039999999995, 0.937949999999995, -0.029250000000007326, 0.3077099999999957, 1.0865399999999932, 1.3497899999999938, 0.8111999999999924, 1.0553399999999922, 0.9660299999999946, 0.9032399999999949, 2.2479599999999937, 2.553329999999995, 2.729999999999996, 1.504229999999994, 0.7998899999999929, 1.3337999999999939, 1.6528199999999962, 2.297099999999993, 2.331809999999996, 2.066609999999991, 1.3275599999999952, 1.5170999999999966, 1.1758499999999934, 2.076359999999997, 1.8996899999999926, 1.1742899999999947, 2.0498399999999948, 1.330679999999989, 1.7670899999999943, 1.004639999999993, 1.7257499999999943], [0.0, 0.6232199999999963, 1.2912899999999983, 1.3096199999999962, 1.6824600000000007, 2.541629999999999, 2.1730799999999952, 1.933229999999993, 2.4394499999999986, 2.496389999999997, 3.147299999999997, 2.897309999999996, 2.285789999999995, 1.981979999999997, 0.7827299999999937, 0.2527199999999947, 0.9336599999999979, 1.5779399999999946, 1.6251299999999942, 2.4870300000000003, 2.1180899999999934, 1.358369999999999, 2.1598199999999985, 2.6157299999999966, 2.3711999999999946, 2.7046500000000004, 1.8575699999999955, 1.889549999999999, 2.146169999999996, 2.555279999999991, 1.8630299999999953, 2.467919999999994, 2.2452299999999963, 1.7873700000000001, 1.249950000000001, 2.4191699999999976, 3.124679999999992, 3.151979999999995, 2.970239999999997, 2.372369999999999, 1.975349999999993, 1.6083599999999967, 1.6204499999999955, 2.3789999999999973, 2.3918699999999964, 3.0314699999999988, 2.8590899999999997, 2.217929999999995, 1.9616999999999978, 2.675399999999996, 2.8005899999999952, 3.3173399999999975, 3.070079999999996, 2.3750999999999993, 1.2990899999999996, 1.1333399999999942, 0.29249999999999243, 0.8314799999999973, 1.4671799999999973, 2.1083399999999934, 1.9191899999999955, 1.407119999999999, 1.3131299999999957, 1.7078099999999994, 2.074019999999997, 1.8907199999999946, 2.186729999999997, 2.337269999999998, 2.749109999999997, 2.3973299999999957, 3.1632899999999937, 2.7611999999999957, 2.843099999999997, 1.9281599999999974, 2.6168999999999962, 2.309969999999998, 1.9897799999999948, 1.2811499999999967, 2.182829999999995, 2.305680000000001, 2.8345199999999986, 2.581019999999996], [0.0, 0.7055099999999994, 0.7047300000000032, 0.599820000000002, 1.3435500000000005, 1.9917299999999933, 1.7269199999999971, 1.5268499999999952, 2.061539999999996, 2.558789999999998, 1.716000000000002, 1.480829999999992, 1.6988399999999997, 1.3443299999999985, 1.3345799999999963, 0.9278099999999938, 0.6282899999999989, 1.3345799999999945, 1.5525899999999977, 1.0467599999999972, 0.9055799999999987, 0.8829599999999971, 0.6629999999999967, 1.0432499999999978, 1.0233599999999958, 1.7440799999999994, 1.497599999999995, 1.2187499999999938, 1.5689699999999975, 1.5927599999999966, 1.6551599999999915, 2.330249999999998, 0.8576099999999975, 1.4199900000000003, 0.8841299999999954, 2.1364199999999984, 2.4893700000000005, 1.7959499999999924, 2.1161399999999944, 1.3572000000000033, 0.9566699999999972, 1.5490799999999982, 1.812719999999997, 1.467959999999998, 1.1044800000000023, 2.084940000000002, 2.327519999999999, 1.4199899999999932, 1.1774099999999939, 1.1099399999999928, 1.182089999999997, 1.576379999999995, 1.176629999999995, 0.5752499999999969, 0.9008999999999983, 1.113449999999995, 2.109899999999999, 1.5830100000000007, 1.4929199999999954, 0.1138799999999991, -0.06279000000000323, 0.18486000000000224, 0.8833499999999939, 0.145859999999999, 0.9547200000000045, 0.37361999999999096, 0.9648599999999963, 1.1575199999999963, 1.2596999999999898, 1.5584399999999974, 1.5291899999999998, 2.1009299999999964, 1.6130399999999963, 2.225339999999997, 1.5709199999999974, 1.7600699999999971, 2.206229999999996, 2.167229999999995, 1.4605499999999942, 1.1840400000000004, 1.3922999999999996, 1.2741300000000022], [0.0, -0.05577000000000165, 0.6333600000000001, 1.0381799999999992, 1.2312299999999996, 1.546740000000003, 2.1180899999999996, 1.3462800000000033, 1.1610299999999998, -0.03353999999999768, 0.5463900000000033, 0.6356999999999968, 0.550289999999996, 0.8611200000000023, 0.5311800000000022, 0.7238400000000023, 0.7842900000000013, 0.86931, 1.3852800000000034, 0.6661199999999989, 0.4196399999999989, 0.09438000000000546, 0.4925699999999962, 1.2932400000000022, 1.0666500000000028, 1.2246000000000015, 1.7109300000000025, 0.8330400000000013, 0.946530000000001, 1.5007200000000012, 1.3388700000000018, 1.2183599999999988, 0.9391199999999986, -0.007020000000006021, -0.03237000000000201, 0.7230600000000003, 1.6274699999999998, 2.3130900000000025, 1.3490100000000016, 0.8119799999999997, 1.1493299999999995, 0.6271199999999992, 1.0315499999999997, 1.6473600000000022, 1.8501600000000011, 1.5674100000000033, 1.6149899999999997, 1.0202400000000011, 0.6770400000000021, 0.8697000000000017, 1.67232, 1.4192100000000019, 1.708200000000001, 1.1555700000000035, -0.08891999999999989, -0.004679999999999573, 0.3155100000000015, 0.41964000000000157, 0.22229999999999972, 0.11738999999999855, -0.10569000000000095, 0.4005300000000038, 0.42822000000000005, 0.29328000000000287, 0.10062000000000015, 0.6715800000000018, 0.16223999999999883, 0.5370300000000015, 1.3720200000000027, 1.2983100000000012, 1.4699100000000014, 0.9675900000000008, 1.3088399999999987, 1.7737200000000013, 1.6574999999999984, 0.3779100000000004, -0.16302000000000127, -0.42587999999999937, -0.17784000000000155, -0.12596999999999614, 0.17004000000000108, 1.570530000000002], [0.0, 0.4173, 0.5378099999999999, 0.5768100000000032, 0.9730500000000002, 0.8864700000000028, 1.2873900000000011, 2.3614500000000014, 2.743260000000002, 2.633280000000001, 2.8204800000000008, 2.5357800000000013, 3.474510000000001, 2.74521, 2.3887500000000017, 2.42385, 2.816580000000001, 2.291640000000002, 2.7307799999999998, 2.934750000000001, 1.9059300000000001, 2.2218299999999997, 2.0619300000000003, 1.9328400000000021, 1.5440100000000005, 1.1052599999999995, 1.222650000000002, 0.43367999999999896, 0.7039499999999999, 1.7066400000000015, 1.9698899999999993, 2.0689500000000005, 1.5030599999999978, 1.6188900000000017, 1.4546999999999999, 1.76631, 2.8965300000000025, 1.9219200000000014, 2.129010000000001, 1.6953299999999991, 1.4488500000000006, 1.730820000000002, 1.0670400000000013, 1.7538300000000007, 1.866540000000001, 1.9722300000000015, 1.460550000000001, 1.2858299999999994, 1.0795199999999996, 0.579930000000004, 1.0705499999999986, 1.8287100000000007, 1.4558700000000018, 0.8622899999999993, 1.0491000000000001, 1.577550000000001, 1.822080000000001, 1.1840399999999973, 1.600560000000001, 1.3318499999999989, 1.23006, 1.8431399999999998, 1.9184099999999997, 1.7175599999999982, 1.7815199999999993, 1.53153, 2.310750000000001, 2.825940000000001, 2.246009999999998, 1.5518100000000028, 2.6699400000000004, 2.377050000000001, 2.9351399999999996, 3.019380000000002, 2.821260000000002, 2.1176999999999997, 2.5061400000000007, 2.02566, 2.4722100000000005, 2.075190000000001, 2.853240000000001, 2.634450000000001], [0.0, -0.0698100000000017, 0.8470800000000016, 1.585740000000001, 1.2889500000000012, 1.5506400000000011, 2.1165300000000014, 2.1914100000000007, 1.974960000000001, 1.9028100000000012, 1.6672500000000003, 1.7050800000000015, 1.3154700000000012, 1.130220000000001, 1.538160000000001, 2.131350000000001, 2.8189200000000003, 3.15939, 3.9257400000000002, 3.1402800000000006, 3.1535400000000005, 2.2818900000000015, 2.2401600000000013, 1.7397900000000015, 2.0237100000000012, 2.580240000000001, 2.435160000000001, 2.368080000000001, 1.6777800000000016, 1.757340000000001, 2.157090000000001, 2.0923500000000006, 0.4906200000000005, 0.8498100000000006, 0.9952800000000002, 1.2799800000000006, 1.8380699999999994, 2.559960000000002, 1.8817500000000007, 1.3439400000000017, 1.2117300000000006, 1.0377900000000002, 0.8264100000000005, 1.6793400000000012, 2.108340000000001, 1.9484400000000015, 2.314260000000001, 2.1036600000000005, 2.2877400000000008, 2.416830000000001, 2.7179100000000007, 2.124720000000001, 2.093910000000001, 2.1024900000000013, 1.1508900000000002, 0.6813300000000015, 1.1430900000000008, 1.4215500000000014, 1.083810000000002, 1.2008100000000024, 1.0916100000000002, 1.3533000000000008, 0.17237999999999953, 0.9960600000000004, 0.9578400000000014, 1.4570400000000014, 1.7210700000000012, 1.368510000000001, 2.265900000000001, 2.0361900000000013, 2.376660000000001, 2.231970000000001, 1.8860400000000008, 2.4492000000000007, 2.340390000000001, 2.387580000000001, 2.560740000000001, 2.382510000000001, 2.4499800000000014, 2.0751900000000014, 2.0276100000000015, 2.1785400000000017], [0.0, 0.20669999999999833, 0.4715100000000021, 0.3525599999999991, 0.86775, 0.4785299999999988, 0.9523799999999976, 1.222650000000002, 1.0697699999999997, 1.402050000000001, 1.53777, 1.1333400000000013, 1.7752800000000017, 1.802580000000001, 1.0553399999999984, 1.175850000000001, 1.9558500000000014, 1.7990700000000013, 1.8470399999999998, 2.50497, 1.911780000000002, 2.02605, 1.1060399999999975, 1.0241400000000014, 1.1505000000000005, 0.500760000000001, 0.25389000000000284, -0.3669900000000026, -0.2698800000000001, -0.3221399999999943, 0.5803199999999937, 0.6431099999999974, 0.4816499999999979, 0.4921799999999963, 0.6169799999999985, 0.5089500000000013, 1.357979999999999, 1.8833100000000003, 1.703129999999999, 1.6060200000000004, 0.6306300000000014, 0.7136999999999971, 1.0342800000000012, 0.23828999999999567, 0.7987199999999999, 0.9644700000000013, 0.7386600000000021, -0.08346000000000409, 0.911819999999997, 0.6774299999999984, 0.0542100000000012, 0.8057399999999992, 0.2761200000000006, 0.011309999999999931, -1.209, -0.5596499999999991, 0.01716000000000273, 0.26441999999999677, 0.4176900000000012, 0.2141100000000007, -0.5147999999999997, 0.06591000000000369, -0.14274000000000564, 0.49607999999999874, 0.9921599999999957, 1.0128300000000001, 1.0428599999999992, 1.3860600000000032, 0.9087000000000005, 0.8513699999999993, 1.3213200000000032, 1.2253799999999995, 1.720680000000002, 1.8583500000000002, 1.552590000000003, 1.0268699999999988, 1.0705500000000003, 0.34163999999999994, 0.2511600000000005, 0.6793799999999992, 0.9484800000000009, 1.9917300000000004], [0.0, 0.2176200000000006, 1.3880100000000033, 1.2565800000000025, 1.549470000000001, 0.940289999999999, 0.8322600000000013, -0.020279999999999854, 0.04913999999999974, 0.29718000000000067, 0.6719700000000011, 0.5795400000000013, 0.5292300000000003, 0.4215900000000008, 0.4141800000000033, 0.38103000000000153, 1.152840000000001, 1.7175600000000004, 2.0537400000000003, 1.982369999999998, 1.9063200000000002, 1.8337799999999989, 0.6041099999999997, 0.6243900000000007, 0.04173000000000071, 0.015989999999998394, 0.3451500000000014, -0.07526999999999862, 0.3096600000000005, -0.2710500000000009, 0.02690999999999999, -0.8108099999999996, -0.7324199999999997, -0.3194100000000002, -0.1115400000000002, 0.022229999999999306, 0.5354699999999999, 0.9535500000000019, 0.2788499999999998, 0.9578399999999989, 0.25622999999999974, 0.414570000000001, 0.6575400000000007, 0.616590000000002, 0.26987999999999945, 0.1567800000000008, 0.5857799999999982, 0.32876999999999956, 0.03900000000000037, 0.18680999999999903, 0.25155000000000083, 0.3521700000000021, 0.2679299999999982, -0.13104000000000027, -0.6688500000000008, -0.68757, -0.7796099999999999, -0.20982000000000012, 0.05576999999999832, -0.1790100000000001, 0.23867999999999934, 0.16457999999999995, -0.4098899999999992, -0.8264100000000004, -0.5495099999999995, -0.83343, -0.2928900000000001, 0.40989000000000053, 0.7129199999999998, 0.4578599999999995, 0.26559000000000177, 1.176630000000001, 1.671540000000001, 1.9148999999999987, 1.902420000000003, 0.7605000000000006, 1.2823200000000006, 1.9913400000000012, 0.6914699999999983, 0.47814, 1.0760100000000012, 1.0280399999999992], [0.0, 1.0198500000000035, 1.1142300000000027, 1.0841999999999956, 1.0615799999999993, 1.2589200000000007, 0.6669000000000009, 1.4948700000000006, 1.9301100000000009, 1.87629, 1.1633699999999996, 1.989779999999997, 2.2311899999999962, 2.0038199999999993, 2.4484200000000027, 2.0677800000000035, 1.3170300000000035, 1.8291000000000022, 2.3150400000000038, 2.3052900000000047, 1.2554100000000021, 2.274479999999997, 2.548650000000002, 2.3973299999999984, 1.8918900000000063, 1.6266899999999973, 0.30303000000000146, 0.13728000000000318, 0.2917200000000024, 0.1361100000000004, 0.6076200000000078, 1.414920000000003, 1.1044800000000041, 0.5268900000000016, 0.7300800000000098, 0.15327000000000446, 1.5432300000000057, 1.9815900000000006, 1.886429999999998, 1.1259300000000092, 0.7975500000000082, 0.7757100000000046, 0.5635500000000055, 1.1134500000000038, 1.5650699999999995, 1.3104000000000005, 1.1891100000000048, 0.7924800000000021, 0.5733000000000095, 0.5736900000000027, 0.8002800000000025, 0.3595800000000091, -0.026909999999996437, 0.4282200000000005, -0.48476999999999304, 0.05733000000000743, 0.6676800000000034, 0.4052100000000056, 0.0077999999999969205, 0.3463199999999951, 1.17117, 1.3365300000000016, 1.0635300000000019, 0.5378100000000083, 1.224210000000003, 1.4472899999999953, 1.5252899999999956, 0.8143200000000066, 1.0307700000000013, 0.8521500000000017, 1.089660000000002, 1.0611900000000043, 1.205490000000002, 0.6037199999999991, 1.1321700000000021, 0.7519200000000028, 1.1707800000000042, 0.9995700000000083, 0.5530199999999992, 1.5065700000000026, 1.5869100000000005, 1.5833999999999975], [0.0, 1.5096899999999978, 1.208609999999993, 0.7944299999999984, 0.45396000000000303, -0.18096000000000245, 0.3490499999999983, 1.1087700000000016, 0.683670000000002, 0.652470000000001, 1.270229999999998, 1.2784199999999988, 0.7359300000000006, 0.9738299999999942, 0.5058300000000022, 0.007800000000000473, 1.3716299999999988, 0.7800000000000002, 1.2667199999999985, 2.0740199999999933, 1.5635099999999995, 0.9402899999999983, 0.6497400000000013, 0.9512099999999997, 0.9866999999999964, 0.40169999999999995, -0.6758700000000042, -1.2386399999999904, -0.6914699999999989, -0.6817199999999985, -0.7523099999999943, -0.6317999999999966, -0.1497599999999979, 0.5112899999999998, -0.09360000000000657, 0.40832999999999586, 1.0455899999999962, 1.214069999999995, 0.423150000000005, 0.8747699999999972, -0.17043000000000497, -0.9773400000000017, -0.5869499999999919, 0.13182000000000915, -0.6669000000000036, -0.09243000000000645, 0.4945200000000005, 0.4968600000000025, -0.17511000000000188, -0.623610000000002, 0.1084200000000024, 0.15599999999999792, -0.6185400000000003, -0.8716499999999971, -1.1711700000000045, -0.7901399999999974, 0.007799999999995144, 0.7261799999999967, 0.17549999999999422, -0.45044999999999646, -0.4473299999999991, -0.4941299999999993, -0.6832799999999937, -0.22737000000000496, -0.3439799999999993, -0.039780000000003035, -0.5323499999999992, -0.6961499999999985, 0.33461999999999925, 0.3318899999999987, 0.5432700000000024, 0.3802499999999993, 0.7612799999999966, 1.1446500000000013, 1.5124199999999988, 0.766350000000001, 0.7097999999999987, 0.6883499999999936, -0.3084900000000017, -0.15639000000000447, 0.40521000000000384, 0.3946799999999948], [0.0, 0.9176700000000009, 0.8505900000000008, 0.8174400000000008, 1.333800000000001, 0.8135400000000005, 0.4886700000000007, 0.6130800000000003, 1.3899600000000014, 1.325610000000001, 1.5810600000000008, 1.1945700000000008, 0.4274400000000007, 1.1489399999999999, 1.839630000000001, 0.8938800000000007, 0.5307899999999998, 1.1267100000000014, 1.9940700000000005, 2.0833800000000013, 1.3837200000000007, 1.344720000000001, 1.4024400000000004, 1.41375, 1.0569000000000013, 1.2207000000000012, 0.4114500000000004, -0.40014000000000016, -0.8732100000000009, -0.06942000000000026, 0.17043000000000097, 1.0159500000000004, 0.8934900000000003, 1.1505000000000007, 1.620060000000001, 0.2269800000000004, 0.3338400000000018, 0.668850000000001, 0.20709000000000133, 0.35568000000000033, 0.5834400000000008, 0.4956900000000001, 0.3697200000000004, 0.41886, -0.3385199999999986, 0.13220999999999994, 0.25700999999999974, 0.3053700000000008, 0.4586400000000006, 0.17277000000000042, 0.580710000000001, 0.9266400000000008, 0.38025000000000053, 0.21216000000000035, -0.4383599999999981, 0.08229000000000086, 0.3104400000000007, 0.07839000000000096, 0.29367000000000054, 0.3642600000000007, 0.1829100000000009, -0.10686000000000084, -0.10919999999999996, -0.12050999999999878, 0.09204000000000168, 0.6641699999999999, 0.26676000000000144, -0.05927999999999867, 0.391170000000001, 0.2788500000000004, 0.8817900000000015, 0.7975500000000011, 0.6688500000000015, 0.9597900000000007, 1.3809900000000002, 0.6181500000000006, 0.444990000000001, 1.0315500000000006, 1.1107200000000008, 1.0744500000000008, 1.7409600000000007, 2.143440000000002], [0.0, 0.35724000000000034, 0.44693999999999934, 0.0011699999999993382, -0.20474999999999965, -0.7160400000000006, -0.6579299999999999, -0.5970900000000001, -1.8131100000000027, -0.4184700000000007, 0.0569400000000001, -0.10530000000000062, -0.25428000000000095, -0.06903000000000092, -0.53937, -1.2483900000000006, -0.8314800000000003, -0.10881000000000007, 0.8755500000000004, -0.1349400000000005, -0.4059900000000006, -0.2535000000000004, -1.2187500000000004, -0.31083, 0.052260000000000195, -0.1844699999999999, -0.18057000000000045, -0.8923199999999993, -0.5112900000000006, -1.122030000000001, -1.3985399999999988, -0.29094000000000014, 0.05928000000000011, 0.07877999999999952, -0.8252400000000001, 0.31940999999999964, -0.04563000000000039, 0.41027999999999876, 0.19499999999999962, -0.10101000000000027, -0.3474900000000006, -0.6708000000000007, -0.0869700000000001, 0.25583999999999973, -0.07020000000000082, -0.3377400000000004, -0.28665000000000035, -0.2765100000000001, 0.04757999999999918, -0.24180000000000024, -0.8708699999999995, -0.4325100000000003, -1.2417600000000006, -0.032760000000000344, -0.06162000000000101, -0.2667600000000003, -0.9757800000000001, -1.5003300000000004, -1.6379999999999995, -1.2959699999999998, -1.1048700000000005, -0.7382700000000001, -1.09512, -0.9153300000000004, -1.0163400000000005, -1.5529800000000002, -1.462110000000001, -1.6746600000000007, -1.6972799999999997, -1.5607800000000005, 0.0475799999999994, 0.4024799999999996, 0.060840000000000116, 0.5385899999999993, 0.6984899999999988, 0.18681000000000003, -0.31824000000000013, -0.6793800000000003, 0.07253999999999994, -1.2324000000000002, 0.0378299999999997, 0.3275999999999998], [0.0, 1.3864500000000006, 1.4238899999999979, 1.1189099999999998, 0.28859999999999975, 0.13415999999999995, 0.30966000000000027, 0.57213, 0.26832000000000006, 0.9332699999999993, 0.7846799999999998, 1.29753, 0.8525400000000001, 0.9145499999999996, 1.460940000000001, 1.2990899999999996, 0.50895, 0.64779, 0.8073000000000002, 1.081079999999999, 1.1520600000000005, 1.55454, 0.971489999999999, 1.017510000000002, 0.9044100000000012, 0.9636899999999994, 0.6684599999999998, -0.09828000000000023, -0.6848400000000008, -0.5190900000000005, 0.2269799999999993, 0.3506099999999999, 0.7858500000000003, 0.7027800000000002, 0.3092700000000003, 0.06552000000000018, 1.3548599999999993, 1.169999999999999, 0.05304000000000002, -0.4512300000000004, 0.05537999999999989, 0.4960799999999999, -0.05186999999999995, -0.11895000000000013, -0.7012200000000002, -0.5565300000000001, -0.02457000000000067, -0.13415999999999975, 0.24999000000000032, -0.010140000000000253, -0.1014000000000004, 0.14312999999999987, -0.5187000000000004, -0.5420999999999997, -0.7589399999999998, -0.5027099999999998, 0.8349899999999981, 0.04602000000000052, -0.21021, -0.684060000000001, -0.6364800000000002, -0.2644199999999998, -0.35334000000000065, -0.23360999999999976, -0.63882, 0.030030000000000015, -0.49335000000000084, 0.1965600000000003, 0.17666999999999983, -0.1778399999999996, 0.7226700000000007, 0.5643299999999999, 0.13805999999999885, -0.3767399999999999, -0.8782799999999994, 0.3381300000000004, 0.46175999999999956, 0.07019999999999987, 0.5818800000000007, 1.110719999999999, 0.9917700000000002, 0.6123000000000004], [0.0, 0.804180000000001, 1.2526799999999996, 0.8950500000000001, 0.49373999999999973, 0.17004000000000016, -0.02066999999999994, -0.09008999999999998, 0.004680000000000656, 0.6146399999999997, 0.6809400000000002, 0.5132399999999997, 0.3279899999999998, -0.04250999999999952, -0.22269000000000033, -0.03471000000000024, -0.32292000000000026, 0.1790100000000002, 1.40283, 0.5101199999999997, 0.3946800000000009, 1.2382500000000003, 1.1590800000000006, 1.0315499999999993, 0.49763999999999975, 0.7940400000000005, 0.06395999999999971, -0.37595999999999996, -0.32955000000000007, -0.5459999999999993, -0.58578, 0.5974800000000001, -0.05811000000000008, 0.05303999999999984, 0.19499999999999987, 0.3603599999999999, 0.23009999999999994, 1.2831000000000004, 1.2378599999999995, 0.012870000000000131, 0.08852999999999969, 0.023400000000000115, -0.14157000000000003, -0.11465999999999993, -0.8104200000000005, -0.15482999999999997, 0.3654299999999999, 0.28664999999999996, 0.3307200000000009, 0.5089499999999992, 0.16964999999999966, 0.025350000000000733, -0.2804100000000015, 0.4543500000000005, -0.40754999999999997, -0.6926399999999998, 0.14469000000000018, -0.7082400000000001, -0.6832800000000002, 0.0549899999999994, -0.6938100000000001, 0.051480000000000165, -0.08814000000000022, -0.1883700000000003, -0.008579999999999921, -0.4633200000000003, -0.5354700000000004, -0.37712999999999997, 0.25272000000000006, 0.31082999999999994, 0.8416200000000009, 0.4044299999999995, 0.5530200000000001, 0.8568299999999998, 0.3966299999999999, -0.028859999999999914, -0.03509999999999966, -0.2024099999999996, 0.3989699999999994, 0.7019999999999998, 1.1544000000000005, 1.6964999999999988], [0.0, 0.6356999999999995, 1.2733500000000018, 0.9079200000000018, 1.0569000000000015, 1.4316900000000004, 0.6852299999999998, 2.11146, 0.5526300000000006, 0.5015399999999999, 0.9028500000000008, 1.3209299999999995, 0.44031000000000065, 0.7803900000000001, 0.8346000000000005, 1.1855999999999998, -0.5928000000000004, -0.3053699999999995, 0.1618500000000016, 1.7390099999999995, 1.0073699999999994, 1.3162500000000008, 0.17589000000000032, 0.8619000000000001, 1.01517, -0.18251999999999846, 0.032369999999998456, -0.043680000000002384, 0.2269799999999984, -0.5604300000000006, -0.7686900000000003, -0.04211999999999794, 0.450839999999999, 0.34319999999999995, 0.9172800000000003, 1.7101500000000005, 2.043210000000001, 1.6044600000000004, 1.2245999999999988, 0.7721999999999984, 1.3798199999999994, 0.5896799999999998, 0.5608199999999997, 0.834600000000002, 0.4761899999999999, 0.25545000000000373, 0.6275100000000007, 1.1817000000000004, 0.17510999999999965, -0.7082399999999986, -0.4360199999999992, -0.05772000000000199, -0.6458399999999962, -0.7020000000000017, 0.11231999999999909, -0.28625999999999996, -0.06279000000000101, -0.4520099999999987, -0.8252400000000009, 0.22347000000000072, 1.01712, -0.7031700000000027, -1.5011099999999966, -1.1278800000000024, -0.0612299999999979, 0.2749499999999978, 0.4894500000000028, -0.12479999999999647, -0.10647000000000384, -0.09087000000000112, 1.0221900000000013, 1.1146200000000013, 1.1142300000000012, 0.44499000000000155, 1.07445, 0.69381, 0.16457999999999862, 1.0296000000000005, 0.3759599999999974, 1.2885600000000006, 1.0892700000000004, 0.8884199999999995], [0.0, -0.5183100000000009, 0.3931200000000019, 0.7039500000000016, 0.7511400000000026, 0.3845400000000039, 1.1118899999999985, 1.4106300000000016, 1.3447200000000004, 1.4812200000000006, 0.7312500000000006, 1.3716300000000017, 0.9566700000000004, 0.24609000000000147, 0.5315700000000021, -0.03548999999999802, 1.0377900000000002, 0.9270300000000014, 1.2936300000000012, 0.7499700000000011, 0.6286800000000023, 0.7663500000000019, 0.5873399999999998, 0.21020999999999912, 0.8505900000000008, 0.8603400000000017, 0.9843600000000001, 1.0327200000000012, 1.3708499999999997, 1.2690600000000025, 0.9948900000000003, 1.1083800000000001, 0.6786000000000008, 0.712530000000001, 0.650909999999997, 1.505010000000002, 1.7175600000000015, 1.6298100000000009, 0.9250799999999999, 0.7160400000000009, 0.5787600000000008, 1.2480000000000004, 1.10331, 0.47228999999999877, 1.349010000000001, 0.5850000000000026, 0.2363400000000011, 1.2444900000000043, 1.3950299999999987, 0.9239100000000009, 0.946140000000002, 0.805350000000002, 0.8365500000000008, -0.05576999999999943, 0.27495, -0.20514000000000054, -0.24570000000000247, -1.612260000000001, -0.8053499999999993, 0.13454999999999995, 0.5128500000000003, 0.9129900000000024, 0.46449000000000096, 1.0389600000000005, 0.6220499999999998, 0.20631000000000244, -0.37518000000000074, -0.22892999999999697, 1.1208599999999995, 1.0471500000000031, 1.200420000000001, 0.5116800000000006, -0.05927999999999978, -0.0857999999999981, 0.009359999999999591, 0.23048999999999875, 0.13845000000000507, 0.7136999999999993, 0.5850000000000009, 0.8587800000000043, 1.3638300000000019, 2.104830000000001], [0.0, -0.4079400000000001, 0.46176000000000017, 0.1345500000000005, -0.6356999999999999, 0.240239999999999, 0.17861999999999933, 0.03003, 0.4730700000000001, 1.14426, 0.8607300000000002, 0.002729999999999899, -0.17861999999999972, -0.27963000000000016, -0.2761199999999999, -0.2811900000000002, -0.9788999999999999, -1.1477700000000004, 0.12362999999999968, 0.36854999999999905, -0.02691000000000099, -0.9613500000000003, -0.7390499999999995, -0.6645600000000004, -0.25311000000000006, -0.4137899999999998, -0.9087000000000001, -0.8197799999999995, -0.58266, -1.6067999999999998, -0.9188399999999997, -0.4484999999999991, -0.6809399999999995, -0.9570599999999997, -0.48789000000000005, -0.22307999999999983, 0.04290000000000005, -0.4422600000000001, -0.19812000000000013, -0.7866299999999993, -0.5319599999999999, -0.7000500000000005, -0.6021599999999997, -0.09243000000000018, -0.14897999999999983, -1.02297, -0.08735999999999922, 0.5424899999999995, -0.3346199999999999, -1.69728, -0.9406799999999994, -1.2815400000000001, -1.2101700000000004, -1.24332, -0.7694699999999993, -0.45590999999999954, -0.05069999999999919, -0.67782, -0.78624, -0.32409000000000016, -0.14118000000000008, 0.015599999999999503, -0.4196399999999999, -0.4477200000000001, 0.4293899999999994, 0.85137, 0.35997, 0.28547999999999973, -0.06708000000000025, -0.5791500000000002, -0.35919, -0.38102999999999987, -0.6981, -0.8080800000000008, -0.284310000000001, -0.0674699999999997, 0.26168999999999987, 0.3303299999999998, 0.6216599999999997, 0.2144999999999998, 0.3685499999999994, 0.1696500000000004], [0.0, -0.8213400000000004, -1.6692000000000007, -1.9640399999999978, -2.067, -1.7253600000000013, -0.3650399999999996, -0.2191800000000006, -0.5729099999999996, -0.4360200000000014, -0.29912999999999945, 0.1907100000000017, -0.967980000000001, -1.2218700000000007, -0.5268899999999981, -1.2831000000000017, -1.09785, -1.7834700000000032, -0.50973, -0.1688700000000003, -0.8034000000000019, -1.6520400000000006, -1.55454, -1.3010399999999984, -0.8697000000000001, -1.4691299999999983, -1.1813100000000023, -1.4164799999999989, -2.208180000000005, -1.9262099999999995, -1.524120000000006, -1.4909700000000006, -1.9250400000000025, -1.1485500000000004, -1.4176500000000025, -1.4886300000000017, -1.814280000000003, -0.9839700000000013, -0.8080799999999984, -1.7288699999999981, -0.8923200000000004, -1.4554800000000017, -1.4691300000000005, -1.1742899999999994, -1.5869100000000003, -1.7140500000000018, -1.922309999999997, -1.2573600000000014, -1.1633699999999985, -1.351740000000001, -1.5194400000000037, -2.3645700000000014, -1.969890000000001, -1.6146000000000018, -1.632539999999999, -2.30373, -2.2222200000000036, -2.829060000000001, -2.059590000000001, -1.7163899999999994, -1.5206100000000011, -1.3751400000000003, -2.0124000000000004, -2.2565400000000038, -1.7319899999999968, -1.1087700000000031, -1.8903299999999972, -1.3689000000000024, -0.42704999999999993, -0.8451299999999986, -1.2285000000000006, -0.9379500000000001, -1.1497199999999987, -1.45158, -1.0323299999999993, -1.6032900000000005, -1.3989299999999985, -1.544009999999998, -1.180140000000003, -0.79911, -0.5428799999999985, -0.0783900000000004], [0.0, -0.16887000000000052, -0.061229999999998785, 0.7952100000000004, -0.19499999999999895, 0.02378999999999687, 0.3482700000000014, 0.5421000000000005, 0.7382700000000009, 0.34670999999999963, 0.8981700000000004, 0.11973000000000145, 0.9044099999999997, 0.9328800000000015, 0.784290000000001, 0.6867900000000005, 0.33969000000000027, 0.9660299999999999, 0.4071600000000013, 0.7402200000000003, 0.032760000000000566, -0.3213600000000021, -0.5323499999999983, 0.30693000000000104, 0.18915000000000015, -1.1239799999999995, -1.0771799999999967, -0.8993399999999974, -0.34865999999999975, -0.18017999999999956, -0.7749300000000021, -0.26753999999999856, -0.475020000000002, 0.19772999999999907, 0.1852499999999997, -0.09633000000000091, 0.5931899999999994, 0.8533199999999992, -0.005849999999997468, -0.1751099999999992, 0.7136999999999989, 0.2519400000000014, 0.33774000000000126, -0.09906000000000059, -0.3568499999999992, -0.0011699999999996713, 0.04718999999999918, 0.6388199999999993, 0.2679300000000002, -0.2039699999999982, -0.027299999999998548, 0.3615300000000006, -0.327989999999998, -0.03354000000000035, 0.24413999999999958, -0.04797000000000029, -0.5382000000000007, -1.8076499999999998, -0.5697900000000025, 0.0994500000000027, 0.010530000000003259, 0.46721999999999864, 0.3603599999999987, 0.6228299999999998, 1.3447200000000004, 0.8712599999999995, 0.3057600000000007, 0.5916300000000019, 0.5354700000000006, 1.1095500000000011, 0.5838300000000003, 0.46488000000000107, 0.05382000000000042, -0.08892000000000122, -0.0027300000000001212, -0.054210000000000313, 0.14507999999999965, 0.5382000000000013, 0.9703200000000012, 1.0346699999999998, 1.40595, 2.26317], [0.0, -0.4360200000000014, -0.9379499999999941, -0.77298, -0.7940400000000003, -0.6719699999999977, -0.4305599999999985, 0.32759999999999945, -0.09243000000000157, -0.1361100000000004, -0.6259500000000044, -1.26165, -1.3143000000000025, -1.1820899999999974, -0.91689, -0.0822900000000013, 0.18252000000000113, -1.337699999999996, -1.0424700000000002, -0.9430199999999975, -1.5576599999999972, -1.6251299999999955, -1.9453199999999984, -1.9098300000000061, -2.0564699999999925, -1.8946199999999975, -1.044809999999996, -0.39311999999999836, 0.1310400000000027, -0.15326999999999957, -1.5018900000000008, -2.174250000000001, -0.8369399999999998, -0.8849099999999992, -0.36854999999999816, -0.6680699999999944, -0.11387999999999954, 0.6899100000000011, 0.38571000000000266, 0.23751000000000477, -0.05303999999999531, -0.09944999999999693, 0.21566999999999892, -0.020669999999996858, -0.9079200000000056, -0.20865000000000444, 0.6236100000000029, 0.4215899999999997, -0.4344599999999974, -0.08619000000000243, -0.027690000000000214, -0.9839699999999945, -0.767910000000001, -2.0022599999999966, -1.5186599999999975, -1.5096899999999969, -2.003429999999994, -2.178929999999997, -2.0096699999999967, -0.6750899999999986, 0.43290000000000006, 0.19656000000000295, -0.4293900000000015, 0.7409999999999997, 0.08618999999999799, -0.5136299999999987, -0.6622199999999991, -0.1138799999999982, 0.2593500000000022, 0.152100000000003, 0.1735500000000023, -0.4484999999999961, 0.19538999999999884, -0.9001199999999963, -1.1220300000000036, -0.6037199999999987, -0.2527199999999956, -0.2511600000000036, -0.38219999999999876, -0.028469999999996887, 0.32213999999999654, -0.08853000000000044], [0.0, 0.09125999999999979, 0.3326699999999986, -0.10413000000000183, -0.3322800000000006, 0.7105799999999989, 0.15092999999999968, 0.5210399999999991, 0.6220499999999987, 0.824459999999999, 1.3029899999999994, 1.7308199999999991, 1.156349999999999, 0.6204899999999993, 0.7448999999999997, 0.005849999999999245, 0.05772000000000044, -0.08034000000000097, 0.4165199999999992, 0.11036999999999975, -0.7125300000000008, -1.393860000000003, -0.9254699999999982, -1.0853700000000017, -0.6840600000000019, -1.2468300000000017, -0.9948900000000009, -1.4441700000000053, -0.9808500000000033, -1.3884000000000014, -1.7043000000000024, -1.5280200000000053, -1.5022800000000018, -0.554579999999999, -0.6852300000000022, -0.43017000000000105, -0.019890000000001073, 0.35372999999999943, -0.046410000000002505, 0.19187999999999816, -0.38258999999999976, 0.3716699999999986, 0.17471999999999832, -0.10218000000000083, -1.239420000000002, -0.8264100000000021, 0.3283799999999989, 0.7429499999999991, 0.8903699999999991, 0.07955999999999919, -0.2971800000000009, -0.787410000000001, -0.6696300000000011, -0.52026, 0.013259999999999605, -0.7417800000000012, -1.3174200000000005, -1.4465100000000015, 0.044849999999999945, 0.3876599999999989, -0.07292999999999972, 0.9617399999999994, 0.49802999999999986, -0.01755000000000062, 0.4781399999999981, 0.02028000000000041, -0.22971000000000208, -0.1626300000000005, -0.12441000000000013, 0.06083999999999823, -0.2616900000000002, 0.14663999999999933, 0.20319000000000031, 0.322919999999999, -0.2484300000000026, 0.21839999999999893, -0.24180000000000157, -0.06044999999999967, 0.15365999999999902, 0.5608199999999992, 1.1735099999999994, 1.4866799999999982], [0.0, -0.1540500000000018, 0.0709799999999986, -0.787800000000002, -0.9859200000000017, -0.1400100000000022, 0.3307199999999983, 1.2171899999999987, 0.5725199999999975, 0.6688499999999978, 0.9948899999999986, 0.7698599999999984, 0.7874099999999987, 0.41768999999999906, 0.5409299999999988, 0.5261099999999986, 1.0221899999999986, 0.22229999999999794, -0.6505200000000013, 0.19694999999999868, -0.4578600000000015, -0.6185400000000025, -0.7679100000000028, -0.8291400000000013, -0.010530000000001927, 0.04367999999999861, 0.19110000000000005, -0.5448300000000001, 0.29171999999999837, 0.17432999999999899, -1.0346700000000026, -0.9687600000000023, -0.37947000000000175, -0.987870000000002, -0.6111300000000008, -0.15366000000000157, 0.012089999999999712, 0.4219799999999984, 0.15170999999999857, 0.0023399999999993426, -0.5935800000000018, -0.5499000000000029, -0.6029400000000003, -0.6115200000000021, -0.5011500000000018, -0.11895000000000089, -0.19890000000000174, 0.4828199999999985, -0.512850000000002, 0.003509999999998459, -1.1532300000000033, -1.0705500000000017, -1.1251500000000008, -1.1840400000000009, -0.6489600000000006, -0.7655700000000019, -1.4110200000000042, -1.0787400000000014, -1.1267099999999999, 0.13649999999999873, 0.2885999999999985, 1.0748399999999982, 1.3829399999999987, 1.512809999999999, 0.9554999999999991, 1.0526099999999987, 0.03392999999999802, 0.4477199999999987, 0.4367999999999986, 1.3977599999999988, 0.40793999999999864, -0.07098000000000071, 0.6836699999999988, 0.14312999999999854, -0.12441000000000146, 0.11153999999999875, 0.15248999999999857, -0.0561600000000011, 0.21839999999999876, -0.09828000000000103, -0.020280000000001186, 1.296749999999998], [0.0, -0.15599999999999925, 0.2999100000000037, -0.18095999999999846, -0.7659600000000006, -0.0982799999999937, -0.1259699999999997, 0.710579999999998, 1.2616500000000008, 0.07449000000000172, 0.12947999999999826, -0.09281999999999968, -0.1579499999999996, 0.024570000000001535, 0.6700200000000014, 0.2441400000000029, -0.29288999999999543, 0.43407000000000284, 0.9882599999999999, 1.0323299999999995, -0.10295999999999994, -0.9590099999999988, -2.4792299999999976, -1.8010199999999985, -1.8794100000000005, -1.06509, -0.6009900000000004, -1.082640000000001, -0.745289999999998, -0.41105999999999865, -0.8256299999999976, -1.8427499999999983, -0.8732100000000007, -0.9157199999999985, -1.067429999999998, -1.4075099999999985, -0.4321200000000003, 0.4578600000000006, 0.1267500000000017, 0.48750000000000115, -0.07721999999999829, -0.5105100000000005, -0.7055099999999976, -1.1797500000000007, -0.606449999999997, -0.2534999999999963, -1.070940000000003, -0.7959899999999998, -0.029639999999998334, -0.8732099999999998, -1.2862199999999984, -1.5717000000000003, -0.963300000000002, -0.39195000000000135, -0.5810999999999975, 0.2843099999999996, -1.1161800000000008, -1.6360499999999996, -1.514759999999998, -1.7050799999999995, -1.4141399999999988, 0.7226700000000039, 1.3950299999999989, 1.1719499999999985, 1.0436400000000021, 0.4098900000000034, 0.1528800000000028, 0.024569999999999315, -0.0908699999999989, -0.12362999999999857, 0.03743999999999925, 0.2546699999999986, -0.3018599999999978, -0.5842200000000015, -0.5229899999999983, 0.06786000000000403, 0.49764000000000275, -0.13220999999999927, 0.46682999999999675, -0.16340999999999717, -0.5409299999999995, 0.09126000000000234], [0.0, 0.4925700000000024, -0.1290900000000006, -0.48164999999999925, -0.8724299999999996, -0.8115900000000007, 0.3985800000000004, 0.27144000000000323, 0.5931900000000025, 1.006980000000001, 0.46721999999999997, 0.23945999999999978, 0.5701800000000019, 0.5623800000000025, 0.3205800000000032, -0.07097999999999738, -0.20357999999999832, 0.08307000000000242, 0.7398300000000013, 0.9102600000000032, 0.6111300000000008, -0.2523299999999984, -1.3123499999999972, -1.5303599999999995, -1.804529999999997, -0.9726599999999976, -1.0588499999999992, 0.1212900000000019, 0.039780000000003035, -0.16223999999999572, -0.5803199999999968, -0.51987, -0.7491899999999974, -1.3774799999999998, -0.9508199999999989, -0.623219999999999, -0.14429999999999854, 0.9488700000000023, 1.132560000000001, 1.001520000000004, 0.5904600000000046, -0.42353999999999825, -0.7402200000000008, -0.1318199999999976, -0.050699999999996415, -0.17549999999999777, -0.15755999999999704, 0.518700000000001, 0.024960000000002314, 0.25116000000000094, -0.4017000000000004, -0.28352999999999984, -0.5015399999999994, -0.29873999999999956, -0.20864999999999823, -0.3985799999999986, -1.3033799999999998, -0.5978699999999977, -0.769469999999997, -0.925859999999993, -0.2804099999999967, 0.3552900000000021, 1.0623600000000002, 1.3025999999999998, 1.445730000000002, 1.0849800000000003, 0.7152600000000024, 0.9036300000000015, 0.6906900000000016, 0.09360000000000301, -0.03158999999999823, -0.19421999999999695, -0.4270500000000008, 0.15873000000000115, 0.4325100000000017, 0.7140900000000017, 1.0147800000000016, 0.520260000000003, 0.6887400000000032, 0.2359500000000041, 0.003509999999999458, 0.1029600000000035], [0.0, -0.419249999999999, -0.11153999999999797, 0.4442100000000029, 0.7398300000000019, 0.49062000000000006, 0.6080099999999997, 1.019850000000001, 1.4613300000000011, 1.1813100000000007, 1.206270000000002, 1.2854400000000015, 0.8892000000000012, 1.2281100000000016, 0.624000000000001, 1.0268700000000017, 0.6770400000000015, 1.1832600000000015, 1.6091400000000016, 0.5853900000000004, 0.7324200000000005, 0.4325100000000015, -0.6084000000000005, -0.8735999999999975, -1.1906699999999981, -1.3571999999999989, -1.5248999999999984, -1.1216399999999993, -1.206659999999999, -0.9430199999999984, -1.2339599999999997, -1.2721799999999996, -0.7429499999999964, -0.8954400000000033, -0.7261800000000025, -0.5596499999999982, 0.0959400000000028, 0.3190200000000023, 0.33033000000000245, -0.6509099999999997, -0.41846999999999857, -0.09983999999999771, -0.8903699999999986, -0.6146399999999992, -0.6735300000000004, -0.6314100000000007, -0.6161999999999996, -0.1782299999999981, -0.4130099999999992, -0.7788299999999992, -1.0615799999999993, -1.0272599999999965, -0.5331300000000003, -0.4293899999999984, -0.24257999999999735, 0.5050500000000013, 0.19032000000000093, -0.5030999999999979, -0.09008999999999867, -0.02885999999999922, 0.04056000000000126, 0.9952800000000015, 0.998790000000001, 0.38142000000000365, 0.330719999999999, 0.8299200000000011, 0.31785000000000085, 0.7250100000000016, 0.789360000000001, 0.762840000000001, 1.0315500000000026, 0.6388200000000007, 0.6345300000000016, 0.9562800000000017, 1.434030000000002, 0.5873400000000004, 0.8794500000000012, -0.24141000000000035, 0.20358000000000098, 0.45630000000000237, -0.041339999999999044, 0.8903700000000014], [0.0, 1.0943400000000008, 1.4297400000000016, 0.03861000000000159, 0.5752500000000007, 1.3170300000000021, 1.203930000000002, 1.5323100000000016, 0.2519400000000016, 0.5709600000000012, 0.95472, 1.050660000000002, 0.6306300000000014, -0.11387999999999643, 0.4539600000000015, 0.9866999999999997, 0.5019300000000011, 0.48204000000000047, 0.7117500000000025, 0.7527000000000028, 0.3861000000000019, 0.7768800000000025, -0.017549999999998622, -1.279590000000002, -0.7168199999999962, -0.41885999999999735, -0.451619999999997, -1.0409099999999967, -1.4387099999999968, -0.6723599999999932, -0.9995700000000003, -0.9075299999999982, -0.5506800000000012, -0.7402199999999968, -1.644239999999999, -1.130999999999995, -0.10257000000000138, -0.023399999999998755, -0.8158800000000039, -0.4134000000000002, -0.36270000000000246, 0.6680700000000019, -0.4165199999999971, -0.798330000000004, -0.1563899999999978, -0.2819699999999976, -0.49023000000000083, -1.3728000000000002, -0.5534100000000008, 0.304200000000004, 0.26519999999999966, 0.1774500000000021, -0.1852500000000017, -0.21138000000000012, -0.3049800000000036, -0.19695000000000062, -0.000780000000000225, -1.0342800000000008, -1.1848199999999975, -0.7331999999999979, -0.8108099999999978, -1.2136799999999996, -1.3248299999999964, -0.880229999999997, -0.8065199999999986, -0.4024799999999975, -0.8958299999999979, -1.6879199999999956, -1.2526799999999962, -1.3794299999999975, -0.8236799999999982, -1.046369999999997, -1.2019799999999976, -0.6579299999999964, -0.25895999999999963, -0.30692999999999904, -0.4843799999999989, -0.832259999999998, -0.3545099999999972, -0.7854599999999978, -0.15171000000000046, -0.6840600000000006], [0.0, -0.661439999999998, -0.23477999999999755, -0.5506799999999981, -1.0838099999999997, -0.16691999999999796, -0.06980999999999771, 0.4052100000000016, 0.8287500000000003, 1.2343500000000032, 0.7714200000000018, 0.6318000000000059, 0.42822000000000093, -0.5198699999999992, 0.27066000000000345, 0.2823600000000006, 0.18368999999999858, 0.2632500000000033, 0.8271900000000065, 0.7468499999999989, -0.13259999999999916, -0.8868599999999995, -1.1286599999999987, -1.451579999999998, -1.1933999999999998, -1.0100999999999998, -0.8412299999999977, -1.3349700000000002, -0.6466200000000009, -0.9102599999999996, -1.7744999999999993, -2.529929999999999, -2.5416299999999996, -1.8216899999999985, -1.7468099999999995, -1.7019599999999997, -1.406339999999999, -1.7296499999999992, -1.4972099999999988, -1.489799999999998, -1.5307500000000003, -1.5603899999999997, -1.2850499999999978, -0.6536399999999998, -0.38102999999999954, -1.1891100000000003, -0.6774300000000002, -0.6142499999999997, -0.5432699999999979, -1.380599999999999, -1.0783499999999993, -0.5440499999999986, -1.5342600000000002, -0.8603399999999994, -0.5654999999999988, -0.054989999999997874, -0.6419400000000022, -0.6785999999999976, -1.455089999999999, -0.43601999999999874, 0.08891999999999989, 0.7117500000000012, 1.1469900000000082, 0.6715799999999992, 0.6087899999999995, 0.5748600000000015, 0.1852500000000017, -0.5300100000000008, -0.2706599999999981, -1.3868399999999999, -0.5112899999999994, -0.5307899999999983, -0.7082400000000004, -0.49022999999999994, -0.24998999999999816, -0.7448999999999981, -0.07214999999999838, -0.4793099999999981, -0.04017000000000026, -0.48594000000000026, -0.49139999999999606, 1.045590000000003], [0.0, -0.8798400000000005, -0.08501999999999998, -0.2573999999999995, 0.19538999999999956, 0.41105999999999976, -0.42939000000000027, 0.26870999999999956, 0.7074599999999993, 0.6688499999999994, 0.8841300000000003, 0.6941999999999998, 0.7199400000000004, 1.3076699999999994, 0.5518499999999997, 0.22619999999999968, -0.4555200000000009, -0.1801799999999989, 0.8650199999999996, 0.5315700000000002, -0.07527000000000017, -0.932489999999999, -1.1766300000000007, -0.9909900000000004, -0.6789899999999996, 0.5514600000000001, 0.33423000000000014, -0.5358600000000019, -0.7878000000000004, -0.25193999999999894, -1.036230000000002, -1.0904399999999983, -1.298309999999999, -1.1134500000000003, -0.8993400000000021, -0.3654300000000008, 0.9305399999999997, 0.49685999999999997, 0.14313000000000037, -0.11037000000000041, -0.45045000000000013, -1.3240499999999984, -0.8919299999999991, -1.205880000000001, -1.717950000000001, -0.8119799999999994, -0.029249999999999665, 0.5066100000000001, 0.8689199999999989, -0.1548300000000007, 0.021839999999998194, -0.02769000000000066, 0.1684799999999994, -0.9566699999999991, -0.8459100000000003, -1.1239799999999995, -1.8092099999999998, -1.6454100000000018, -1.2023699999999993, -0.5070000000000009, 0.20630999999999994, 0.10841999999999974, 0.9395099999999995, 1.4426099999999997, 1.1863799999999998, 0.37283999999999906, -0.2164500000000006, 0.14546999999999954, -0.3829800000000021, -0.16886999999999996, -0.04016999999999993, 0.07878000000000018, -0.6360900000000002, -0.007409999999998362, 0.11114999999999997, -0.235950000000001, -0.026519999999999655, -0.22503000000000029, -0.01716000000000073, 0.22931999999999936, 0.13493999999999962, 0.7866300000000002], [0.0, 0.16496999999999984, -0.05966999999999967, 0.30849000000000304, -0.8704799999999979, -1.2491699999999997, -0.5498999999999974, -0.517919999999999, 0.9796800000000006, 0.5202599999999995, 0.7047299999999983, 0.6606599999999996, 0.6548100000000026, 1.2129000000000012, 0.559260000000001, -0.38414999999999844, -1.044029999999998, -0.3131699999999993, 0.5631600000000017, 1.167660000000002, 0.41847000000000323, -0.6142499999999986, -0.9781199999999997, -1.4570399999999997, -1.0838100000000002, -1.39932, -1.458989999999999, -0.8634599999999995, -0.7191599999999985, -0.8642399999999986, -1.255799999999999, -1.3298999999999985, -0.5452199999999989, -0.3588, -0.6817199999999972, -0.09594000000000014, -0.6212699999999975, -1.464449999999998, -1.6399499999999991, -1.3704599999999987, -0.8852999999999978, -1.2842699999999998, -0.25466999999999906, -0.18642000000000136, -0.30536999999999725, -0.5245499999999979, -0.628289999999998, -1.5112499999999993, -0.31355999999999984, -0.15521999999999814, -0.3299400000000001, 0.14040000000000274, 0.25973999999999986, -0.3693299999999984, 0.6910800000000004, -0.29522999999999744, -0.5604299999999984, -0.31511999999999807, -1.100579999999998, -0.8946599999999989, -0.9566699999999992, -0.44654999999999867, 1.540890000000001, 0.5877300000000028, 1.1668800000000017, 1.1536200000000019, 0.694200000000003, -0.30731999999999715, -0.3459299999999981, -0.6801599999999992, -0.04251000000000005, -0.6719699999999993, -1.1520599999999988, -0.3252599999999992, -0.24491999999999958, -0.3303299999999989, -0.6009899999999992, -0.3712800000000003, 0.11388000000000309, -0.26831999999999745, 0.37128000000000405, 1.1325600000000011], [0.0, -0.9239100000000007, -0.6528599999999987, -0.27027, -0.7994999999999997, -0.7866299999999993, -0.667679999999998, -0.7476299999999982, -0.1918799999999985, 0.8817899999999981, 0.6158100000000002, -0.05771999999999888, 0.07995000000000418, 0.2694899999999967, 0.9418499999999963, 0.6438899999999996, -0.18368999999999946, 0.31161000000000216, 0.9710999999999994, -0.15717000000000025, -0.22152000000000305, -0.2843100000000005, 0.02184000000000008, -0.7577699999999958, -0.9243000000000006, -0.9835800000000035, -0.16770000000000262, -0.42627000000000015, -1.176240000000004, -1.243320000000002, -1.975349999999998, -2.44374, -1.7741099999999985, -1.5085200000000016, -1.0448099999999982, -0.40755000000000097, -0.1821300000000008, 0.05811000000000188, -0.11816999999999833, -0.3073200000000025, -1.2140699999999969, -1.188719999999999, -0.9691499999999977, -0.22307999999999906, -0.15210000000000212, -0.1610699999999996, 0.18291000000000013, 0.28547999999999796, 0.21021000000000134, -0.18681000000000392, -0.4052100000000003, -0.4715100000000012, -0.8533199999999992, -1.2281099999999978, -0.8646299999999996, -0.9211799999999992, -0.6524700000000019, -0.7152599999999993, -1.1376300000000064, -0.5982599999999998, 0.38844000000000145, 0.45942000000000194, 0.8435699999999968, 1.4324699999999986, 1.177410000000001, 1.0814699999999988, 0.088919999999999, -0.7710299999999997, -0.481650000000001, -0.55965, -0.4929600000000005, 0.1641900000000014, -0.3166799999999941, -0.04757999999999907, -0.20553000000000088, -0.030419999999997227, -0.5596499999999973, -0.9590100000000024, -0.6871799999999983, -0.7589399999999968, 0.06707999999999847, 1.4948699999999981], [0.0, -0.18018000000000023, -0.04095000000000015, -0.7604999999999998, -1.2760800000000012, -0.38102999999999965, 0.1602900000000005, 0.46059, 0.47735999999999995, 0.8240700000000003, 1.02141, 0.7831199999999996, 0.8186100000000005, 1.2226499999999996, 1.86225, 0.5327400000000004, -0.28469999999999984, 0.8888100000000002, 0.6310200000000008, 0.08268000000000031, -0.7897500000000001, -0.009749999999998704, 0.5424899999999984, 0.6606599999999998, -0.005850000000000688, 0.3931200000000001, 0.31433999999999984, -0.44694, -0.5619899999999985, -1.2511199999999993, -2.3587199999999995, -1.7440799999999999, -1.2390299999999974, -0.4906199999999993, -0.528059999999999, 0.7211099999999999, 0.7261800000000002, -0.24803999999999993, -1.654379999999998, -1.8548399999999998, -1.7483700000000013, -0.8306999999999997, 0.3537300000000002, 0.32954999999999984, 0.8061300000000001, -0.1372799999999993, -0.2909400000000001, 0.36192, 0.8603400000000011, 0.6064499999999992, 0.7074600000000011, 0.49451999999999946, 0.5783700000000003, -0.5709599999999989, -0.4984199999999982, -0.13649999999999896, -0.20474999999999743, 0.6154199999999999, 0.21840000000000048, 0.60918, -0.10101000000000138, 1.1415299999999997, 1.45236, 1.29285, 1.8447000000000005, 0.8494200000000004, 0.5167499999999999, -0.42353999999999925, 0.8388900000000004, 0.52533, 1.1805299999999999, 0.5409300000000008, 0.7745399999999999, 0.2542799999999994, -0.3018599999999999, -0.4516199999999998, -0.7745400000000001, 0.09243000000000101, 0.08423999999999987, 0.2843100000000002, 1.03818, 1.4457300000000002], [0.0, -0.16028999999999938, 0.5354699999999999, -0.13688999999999862, -0.34514999999999985, -1.4660100000000003, -1.7799600000000035, -1.7655300000000014, -1.067039999999999, -0.9878700000000014, -0.805740000000003, -0.6957600000000004, -0.44733000000000156, -0.290550000000001, 0.4379699999999994, 0.6914700000000003, 0.3704999999999994, 0.23049000000000108, 0.5147999999999999, 0.007799999999999585, -0.5475600000000016, -0.0335399999999999, 0.272609999999999, 0.24452999999999936, 0.11700000000000021, -0.4937400000000003, -0.06005999999999867, -0.9258599999999988, -1.2554100000000017, -1.5424500000000014, -2.4686999999999983, -3.4359000000000086, -3.2073599999999964, -2.1001500000000006, -0.7491900000000009, 0.11895000000000011, 0.2156699999999997, 0.29405999999999965, 0.59085, -0.18408000000000047, 0.32174999999999976, -0.061229999999998785, -0.12752999999999926, -0.7429499999999993, -1.5588300000000022, -2.0393099999999986, -1.7791800000000015, -1.5221700000000045, -1.0740600000000007, -0.7238400000000014, 0.06512999999999858, 0.5350799999999984, 0.8693099999999987, 0.2808000000000004, -0.04407000000000072, 0.7012200000000004, 0.059670000000001, -0.14312999999999976, -0.13415999999999983, -0.16848000000000019, 0.11894999999999989, 0.8057399999999999, 1.5869099999999996, 0.9703200000000001, 0.83304, 0.9835800000000005, 0.44576999999999956, 0.07175999999999894, -0.9757800000000016, -0.9621300000000002, -1.1961300000000006, -0.0409499999999996, 0.09944999999999915, -0.41886000000000156, -0.7601099999999983, -0.5830500000000014, -0.9777300000000007, -0.8638499999999993, -0.18876000000000026, -0.4594200000000004, -0.06278999999999946, 0.8603399999999999], [0.0, 0.025739999999998986, -0.022230000000001526, 0.6052799999999984, 0.7413899999999984, 0.14858999999999933, -0.4894500000000017, -0.25935000000000086, 0.823289999999999, -0.10764000000000151, 0.4133999999999991, 0.8685299999999987, 0.5931899999999991, 0.8244599999999995, 0.33539999999999903, -0.7164300000000006, -1.677780000000001, -1.7378400000000005, -1.4862900000000046, -0.9894300000000043, -1.3798200000000003, -1.2620399999999996, 0.13181999999999916, 0.24491999999999836, -0.70512, -1.0803000000000018, -0.7429500000000004, -0.17784000000000066, -0.4208100000000019, -0.4056000000000013, -0.6267300000000009, -0.2176200000000006, 0.19070999999999794, 0.952769999999999, 1.6695899999999986, 1.5650699999999989, 1.1933999999999985, -0.6676800000000007, -1.2823200000000001, -1.6758300000000046, -1.7226300000000017, -0.5229899999999998, 0.28976999999999886, 0.64662, 0.12011999999999978, -0.48633000000000015, -0.29796000000000356, 0.5331299999999981, 0.3662099999999979, 0.5810999999999997, 0.42002999999999746, 1.0151699999999984, 0.18134999999999812, 0.25818000000000096, 0.5089499999999982, 0.18407999999999847, -0.5557500000000006, -0.27144000000000235, 0.13025999999999893, 0.5955299999999991, -0.28548000000000084, 0.34943999999999953, 0.37556999999999896, 0.01871999999999896, 0.17705999999999777, 0.19772999999999885, -0.44499000000000044, -0.0019500000000010065, 0.33617999999999904, 0.5881199999999992, 0.3248699999999989, 0.4738499999999981, 1.5553199999999991, 0.9742199999999992, 1.4933099999999997, 1.8142799999999992, 1.3150800000000007, 0.6778199999999986, 0.3244799999999973, 0.8162699999999998, 2.079479999999999, 1.8930599999999993], [0.0, -0.37283999999999917, -0.5561399999999983, -1.3318500000000046, -1.5744300000000013, -1.04676, -1.3950299999999984, -0.5963099999999981, -0.5440500000000004, -0.35802000000000067, -0.43407000000000195, -0.22346999999999628, -0.4485000000000037, 0.24063000000000034, 0.4523999999999986, 0.1583400000000017, -0.3069299999999995, -0.6676800000000007, -0.05694000000000177, -0.24882000000000204, 0.10647000000000073, -0.017940000000002954, 0.16614000000000217, -0.6041099999999986, -1.0393499999999944, -1.3603200000000015, -1.4067300000000005, -1.390349999999998, -1.9246499999999997, -2.081819999999998, -2.6757900000000028, -3.431999999999996, -2.6937299999999977, -1.9886099999999924, -0.9827999999999948, 0.026909999999998213, 0.5557499999999971, -0.5155800000000017, -1.4710799999999988, -1.159860000000002, -1.221869999999993, -0.8884199999999982, -0.39857999999999905, -0.8564400000000036, -0.9067499999999997, -1.6812899999999988, -0.7534800000000015, -0.9391199999999964, 0.004290000000000127, -0.5023200000000028, -0.38415000000000266, 0.3077100000000019, -0.05109000000000208, -0.36816000000000315, 0.4886700000000026, -0.1938299999999975, -0.20240999999999953, 0.3108299999999993, 1.1165700000000016, 0.8447399999999994, 1.5896399999999993, 1.7460300000000015, 1.24878, 0.8997299999999981, 1.1836500000000023, 1.0853700000000024, -0.05654999999999877, 0.22385999999999928, -0.3459299999999965, -0.3794700000000013, -0.5249399999999982, -0.7690800000000015, -0.7538699999999947, -1.127489999999999, -0.43524000000000207, 0.30693000000000215, -0.8962199999999969, -0.9278100000000009, -0.443429999999994, 0.41418000000000843, 0.9937200000000015, 0.9367799999999988], [0.0, -0.6415499999999998, -0.8205600000000011, -0.6778200000000005, -1.1454300000000015, -0.47736000000000095, -0.6150300000000013, -0.9141600000000009, -0.907920000000001, 0.2316599999999992, 0.8954400000000006, 0.7733699999999989, 0.4984199999999991, 0.6142499999999985, 0.023009999999998754, -1.004640000000001, -0.9726600000000012, -1.3490100000000005, -0.34632000000000096, 0.10607999999999917, -0.26754000000000056, 0.11036999999999908, -0.4664400000000009, -0.8579999999999999, -1.096290000000001, -1.2799800000000014, -1.5939300000000012, -1.602900000000001, -1.2667200000000005, -1.7390100000000022, -1.5681900000000017, -1.5705300000000006, -1.1547900000000013, -1.338870000000001, -0.48477000000000053, 0.6848399999999993, 1.543229999999998, 0.6934199999999985, -0.783120000000001, -1.231230000000001, -1.2117300000000009, -1.1937900000000006, -0.13650000000000084, 0.16379999999999983, -0.6021600000000018, 0.32096999999999853, -0.27066000000000157, -0.19461000000000162, 0.02534999999999976, -0.11193000000000164, -0.0011700000000012256, -0.47463000000000083, 0.015599999999998615, 0.34865999999999786, 0.8115899999999999, 0.3798599999999993, 0.07838999999999918, 0.6723599999999993, 0.16262999999999928, 0.07526999999999917, -0.038220000000001475, -0.10764000000000173, 0.577589999999999, 0.3049799999999988, -0.17745000000000144, 0.18251999999999968, 0.18095999999999945, -0.02028000000000052, 0.2542799999999984, 0.07448999999999939, -0.273390000000001, -0.1918800000000005, -0.10023000000000071, -0.17901000000000067, -0.2355600000000012, -0.26403000000000054, 0.19499999999999906, 0.14507999999999888, -0.17979000000000134, -0.04875000000000107, 0.23009999999999853, 0.8771099999999982], [0.0, 0.17627999999999489, 0.39233999999999636, 0.4254900000000008, 0.1571699999999927, 0.3798599999999954, 0.09242999999999668, 0.7257899999999919, 1.0245299999999933, 1.6212299999999957, 0.9652499999999948, 1.7705999999999942, 1.8528899999999977, 1.7440799999999927, 1.242929999999995, 0.6626099999999946, 0.24413999999999536, 0.1286999999999967, 1.087319999999992, 1.3568099999999959, 1.4180399999999986, 1.7109299999999945, 2.593109999999998, 2.1282299999999967, 0.927029999999994, 0.6395999999999962, 0.7448999999999941, 0.6770399999999945, 1.311569999999997, 0.08189999999999475, 0.3392999999999935, -0.2207400000000037, 0.11894999999999989, -0.006240000000005352, 0.4738499999999961, 1.1660999999999966, 1.8368999999999933, 2.497949999999995, 1.724579999999996, 0.9024599999999952, 0.8174399999999942, 1.4726399999999877, 1.6025099999999988, 0.5990399999999907, 1.2932399999999964, 1.5720899999999949, 0.6134699999999977, 0.5401499999999997, 1.1243699999999954, 1.2440999999999995, 0.5736899999999947, 1.439099999999999, 2.2292399999999937, 1.6641299999999961, 2.236649999999994, 1.8782399999999932, 1.1590799999999923, 0.873599999999989, 1.2292799999999984, 1.7581199999999941, 2.0279999999999947, 1.8400199999999929, 1.7748899999999974, 1.56584999999999, 2.2943699999999954, 1.6715399999999945, 1.4730299999999952, 2.1063899999999935, 1.6270799999999945, 1.8794099999999956, 1.9971899999999958, 0.9118199999999925, -0.10530000000000239, 0.24374999999999591, 0.21176999999999868, 0.48398999999999326, 0.929369999999996, 0.6676799999999989, 0.588119999999992, 0.7788299999999984, 1.5323099999999923, 1.220309999999996], [0.0, 0.29093999999999953, 1.0775699999999997, 1.2444899999999999, 0.23438999999999932, -0.28197000000000016, 0.471119999999999, 0.49763999999999875, 0.9028499999999982, 1.7803499999999999, 1.26282, 1.908269999999999, 1.2234299999999996, 1.3856699999999997, 1.1762399999999995, 0.44030999999999915, 0.1212899999999999, -0.25973999999999964, -0.12051000000000012, 0.5027099999999995, 0.7776599999999985, -0.416520000000001, -0.7437299999999992, -1.0128300000000006, -1.3786500000000022, -1.8801899999999985, -1.24254, -1.1610299999999998, -1.254630000000002, -1.7998500000000033, -1.50033, -1.474200000000002, -0.36855000000000027, 0.5440499999999993, 1.6274699999999998, 1.78308, 2.9175900000000023, 2.3719799999999993, 1.7518799999999985, 1.5677999999999992, 0.9956699999999992, 1.3181999999999987, 1.0635299999999992, 0.9890400000000004, 1.0701600000000004, 2.173470000000001, 1.340819999999999, 0.7047299999999994, 0.7020000000000004, 0.45318000000000047, 0.8381099999999992, 1.3103999999999996, 1.4874600000000018, 1.9566299999999996, 1.803749999999999, 1.0171199999999985, 1.8294900000000007, 1.879410000000001, 2.5240799999999997, 1.9967999999999995, 1.5249000000000006, 1.7202899999999999, 1.2043199999999994, 1.59939, 2.194920000000001, 2.061539999999998, 0.35333999999999904, 0.5600399999999991, 1.4004900000000005, 1.3552499999999998, -0.04602000000000017, 0.6980999999999997, 0.5112899999999999, 0.8221199999999996, 0.1871999999999993, 0.37401000000000073, 0.37986000000000003, 0.4223700000000009, -0.29366999999999654, -0.09633000000000302, 0.6629999999999995, 0.6953699999999994], [0.0, 0.31706999999999963, -0.18135000000000023, -1.2051000000000007, -1.4714700000000027, -1.0974599999999999, -0.9921600000000012, -0.2507699999999998, 0.3330599999999998, -0.03822000000000059, -0.1396200000000004, 0.6544199999999996, 1.2417599999999998, 0.6723599999999996, 0.5799299999999996, -0.21957000000000038, -0.7877999999999988, -1.0884900000000002, -0.07097999999999793, -0.8373300000000016, -0.07410000000000105, 0.15131999999999768, -0.3486600000000003, -0.600210000000002, -0.7593300000000008, -0.452790000000001, -0.4262700000000025, -0.1899300000000007, -0.601379999999999, -0.7952099999999992, -0.37127999999999994, -1.009710000000001, -0.7164300000000002, -0.9937199999999989, -0.14469000000000032, 0.31823999999999975, 0.8143199999999997, 0.8774999999999995, 0.7807799999999994, 0.4317299999999993, 0.5432699999999999, 0.25232999999999894, 0.6863999999999998, 0.3541199999999992, -0.012090000000000156, 0.7955999999999996, 0.35606999999999966, 0.05109000000000086, -0.4453799999999998, -1.4328599999999976, -0.9746100000000003, -0.19889999999999997, 0.26207999999999954, 0.6594899999999989, 0.20046000000000097, -0.3088799999999984, 0.13221000000000072, -0.4106699999999993, -0.07956000000000041, 1.13451, 0.4664399999999996, 0.969539999999999, 0.7359299999999998, 0.44030999999999954, 0.10724999999999907, 0.3143400000000003, 0.65832, 1.0916100000000002, 1.5833999999999997, 0.9305399999999998, 0.36114, 0.26519999999999977, 0.0436799999999995, -0.6306300000000015, -0.5647199999999996, -0.8174399999999992, -0.4028700000000004, -0.6005999999999992, -0.6349200000000023, -0.7261799999999995, -0.44459999999999866, -0.5112899999999997], [0.0, 0.2059200000000001, 0.3510000000000004, -0.21177000000000024, -1.036620000000001, -0.8650200000000003, -0.6910799999999981, -0.2745599999999997, -0.3431999999999995, -0.2729999999999999, 0.26091000000000086, 0.47268000000000066, 0.7889700000000006, 1.3548600000000008, 0.14898000000000233, -0.6809400000000001, -0.3685499999999986, -0.8556599999999985, -0.5315700000000003, -0.6571499999999988, 0.11349000000000231, 0.804180000000001, 0.22698000000000151, -0.9687600000000001, -0.8868599999999991, -0.08696999999999755, 0.5069999999999999, 0.8942700000000002, 0.6708000000000014, 0.41145000000000187, 0.5132400000000007, 0.01949999999999985, -0.5093399999999992, -0.40793999999999886, 0.04406999999999961, 0.6649500000000004, 0.9492600000000004, 1.5958800000000009, 1.1910600000000013, 2.414880000000002, 2.538119999999999, 2.417220000000001, 1.929330000000002, 1.9028100000000008, 0.9820200000000013, 0.9153299999999998, 0.6162000000000001, -0.13533000000000017, -0.0869699999999991, -0.2733899999999989, -0.2940599999999989, 0.4574700000000005, 0.3147299999999982, 0.9750000000000006, 0.4617600000000004, -0.12558000000000225, 0.012480000000000047, 0.47034, 1.0432500000000005, 1.0806900000000013, 1.435590000000001, 0.9925500000000007, 1.4219400000000006, 1.5167100000000007, 1.4036100000000007, 1.6461900000000007, 1.1664900000000005, 1.4839500000000008, 1.4644500000000011, 1.0143900000000008, 0.37362000000000095, 0.2246400000000004, -0.17549999999999955, -0.16457999999999795, 0.36075000000000035, 0.14741999999999922, -0.07838999999999907, -1.0970699999999969, -0.6232199999999986, -0.9297599999999999, -1.298700000000001, -1.27725], [0.0, -0.7335900000000017, -0.7398300000000018, -1.938690000000003, -1.6988399999999997, -2.248350000000001, -1.2425400000000022, -0.006239999999997803, 0.1376700000000013, 0.11348999999999743, 0.07292999999999727, 0.33695999999999904, -0.5264999999999986, 0.13493999999999806, -0.9395099999999998, -1.3825499999999988, -2.141490000000003, -1.8903299999999987, -1.2530700000000015, -1.3365300000000029, -0.6711899999999993, -0.08229000000000042, 0.31355999999999895, -0.29640000000000377, -0.392339999999999, -0.5077800000000008, -1.5603900000000044, -0.5693999999999977, -0.25896000000000186, -0.6980999999999997, -0.4925700000000024, -0.935220000000001, -0.779610000000003, -0.6052800000000005, -0.7152600000000016, 0.06512999999999725, 0.1267499999999968, -0.20202000000000142, 0.7776599999999965, 0.9671999999999992, 1.2632099999999988, 0.97929, 1.2195299999999996, 0.5775899999999987, 0.6481799999999991, 0.20396999999999954, -0.4360200000000076, -0.52338, -1.6851900000000004, -1.9706699999999993, -2.1832200000000004, -1.6146000000000011, -1.2043200000000023, -0.9753900000000031, -1.2597000000000023, -2.268239999999998, -2.6543400000000057, -1.5229500000000047, -0.14040000000000274, 0.01676999999999884, 0.07604999999999817, -0.2726100000000016, 0.19148999999999816, 0.07370999999999883, 1.3298999999999992, 0.887249999999999, 0.846689999999999, 0.8997299999999993, 2.0771399999999995, 1.4741999999999988, 0.5740799999999986, 0.4309499999999975, 0.5791499999999992, 0.7113599999999991, 0.64896, 0.2577900000000004, -0.41808000000000156, -0.8174399999999986, -1.7468100000000009, -2.255369999999999, -1.834950000000008, -1.380990000000002], [0.0, -0.04056000000000015, -0.8342099999999992, -1.344719999999997, -0.5849999999999982, -0.9164999999999957, -1.2132899999999989, -0.6458399999999975, -0.1996799999999972, -0.19577999999999696, 0.7620600000000013, 1.3747499999999993, 0.3950700000000027, 0.5967000000000025, 0.3346199999999997, -0.5982599999999954, -1.193399999999996, -1.2425399999999978, -0.7725899999999957, -0.6286799999999984, 0.30576000000000114, -0.0854099999999951, -0.13727999999999696, -0.22151999999999683, -0.3424199999999966, 0.12207000000000434, -0.3611399999999989, 0.8962200000000045, 1.20471, 1.0065899999999997, 0.6290700000000036, 0.15405000000000157, -0.38102999999999465, -0.000780000000000225, 0.13142999999999594, 0.7538700000000005, 1.3891800000000019, 1.8657600000000003, 2.1422700000000003, 2.1356399999999947, 2.1925800000000017, 1.7120999999999955, 1.7986799999999978, 1.543229999999999, 1.3844999999999978, 0.1513200000000019, -0.17979000000000012, -0.2476499999999997, -0.031199999999997008, 0.02925000000000466, 0.29211000000000054, 1.6282499999999955, 2.1875099999999974, 2.2222199999999996, 1.5802800000000023, 1.0834199999999998, 0.7242300000000017, 0.6080100000000015, 0.39156000000000235, 0.6696300000000011, 0.8349900000000026, 1.0050300000000028, 1.168439999999999, 1.4001000000000006, 0.6684600000000036, 0.6372600000000017, -0.06395999999999713, 0.8073000000000001, 0.6575400000000076, 0.540930000000007, -0.17744999999999944, -0.320579999999993, 0.17277000000000076, 1.1091600000000015, 0.7234500000000019, 0.7780500000000043, 0.7527000000000021, 0.324480000000003, 0.03471000000000579, -0.7534800000000019, -0.8252399999999969, -0.6462299999999979], [0.0, -0.11075999999999975, -0.7214999999999969, -1.4777099999999976, -2.068949999999998, -2.1785399999999977, -2.1407099999999977, -0.7172099999999992, -0.5288399999999973, -0.007019999999997362, 0.44655000000000866, 0.9321000000000024, 0.296400000000002, 0.31551000000000284, -0.765179999999996, -1.122419999999997, -1.6777799999999983, -2.5638599999999974, -1.776839999999998, -1.1933999999999978, -0.4364099999999975, 0.23790000000000466, 0.01950000000000185, 0.5155800000000039, 0.20592000000000166, 0.29094000000000264, 0.09282000000000279, 0.9129900000000037, 0.9964500000000021, 1.0315500000000033, 0.5541899999999993, 0.3868800000000028, -0.20591999999999677, 0.551070000000002, 0.5222100000000003, 0.5179200000000033, 1.4305200000000036, 2.1598199999999985, 2.497170000000002, 3.369600000000005, 3.1535400000000062, 2.3290800000000034, 2.552939999999999, 2.347800000000007, 2.428530000000006, 2.3224499999999986, 1.8053100000000009, 0.2145000000000019, -0.45473999999999815, -0.7265699999999966, -1.1415299999999977, -0.6134699999999984, -0.6501299999999954, 0.11583000000000165, -0.12479999999999469, -0.11504999999999743, 0.34398000000000106, 0.03549000000000224, 1.0682100000000014, 0.6949800000000055, 1.5030600000000058, 0.9991800000000008, 0.6259500000000009, 1.8287100000000058, 1.4289600000000036, 2.0763600000000055, 2.550989999999994, 1.7608500000000054, 1.8248100000000043, 1.3794300000000033, 1.320150000000004, 0.8197800000000037, 0.8041800000000014, 0.39624000000000237, 0.19539000000000284, 0.4746300000000008, 0.533130000000003, -0.28469999999999707, -1.0214099999999973, -0.7113599999999971, -0.009749999999997705, -0.02339999999999809], [0.0, 0.5623799999999994, -1.473809999999999, -1.5073499999999993, -1.1766299999999987, -1.4121899999999994, -1.110719999999999, -0.9504299999999988, -0.49997999999999954, -0.16418999999999984, -0.4629299999999996, -0.7238399999999984, -1.2148499999999989, -0.5452199999999982, -0.5514599999999991, -1.2234299999999987, -1.72965, -0.832259999999999, -0.4964700000000001, -0.8092499999999985, -0.33266999999999913, -0.07721999999999873, -0.7187699999999992, -0.10295999999999839, -0.8342099999999996, -0.9254699999999985, -0.2924999999999971, -0.3880499999999987, 0.3443700000000025, 0.3755700000000002, 0.5342999999999976, -0.06980999999999837, 0.16029000000000093, -0.19266000000000028, -0.7519199999999983, -0.3053699999999988, 0.7916999999999981, 0.8069099999999991, 0.6661199999999996, 1.171560000000001, 2.144610000000002, 1.4262300000000045, 1.898520000000002, 1.6001700000000023, 1.8673200000000005, 0.4847699999999999, 1.1934000000000016, 1.0514400000000006, -0.22034999999999982, -0.38375999999999966, -0.16419000000000028, 0.5186999999999997, 0.15834000000000104, 0.8470800000000029, 0.8408400000000025, 0.8408399999999998, -0.087359999999999, -0.18251999999999913, 1.2105600000000034, 0.9367800000000022, 0.08268000000000186, 0.2425800000000018, 1.1228100000000019, 0.6181500000000011, -0.393119999999999, -0.3182399999999983, -0.733979999999999, -0.30732000000000004, -1.0744499999999986, -1.0962899999999989, -0.7448999999999987, -0.17471999999999932, 0.007410000000000361, 0.9367800000000017, 0.47151000000000187, 0.6091800000000014, 0.32331000000000154, -0.6684599999999997, -0.814709999999999, 0.015210000000003054, -0.47150999999999876, -0.29990999999999945], [0.0, -1.1536200000000012, -1.808820000000001, -1.9628700000000003, -1.903200000000001, -2.550990000000001, -2.0841600000000007, -1.7257500000000006, -1.3213200000000012, -1.4894100000000008, -1.038180000000001, -1.6637399999999998, -1.620450000000002, -1.732380000000001, -2.4757200000000017, -2.3614500000000005, -2.6668199999999995, -2.1859500000000005, -2.5470900000000003, -2.887170000000001, -1.6559400000000006, -1.37982, -0.794430000000004, -0.35880000000000134, -0.03315000000000046, -0.2952299999999992, -0.419250000000001, -0.08814000000000188, -0.790920000000001, -0.9878700000000007, -0.41613000000000033, -0.6435000000000015, -0.26559000000000044, -0.7425600000000003, -0.6173700000000029, -1.6204500000000008, -1.0900500000000004, -0.5818800000000024, 0.8236799999999995, 1.0276499999999986, 0.6817199999999977, 0.9722699999999986, 0.22307999999999995, 0.3236999999999992, 1.5050100000000022, 0.9597899999999968, 1.2070500000000024, 0.42159000000000013, -0.721109999999999, -1.0923900000000009, -1.2967500000000012, -1.7000100000000007, -0.9399000000000015, -1.4742000000000004, -0.5612099999999995, -0.9726600000000012, -0.5931900000000023, -1.0491000000000013, -0.7222800000000027, -1.2230400000000012, -0.749970000000002, -0.29913000000000123, -0.2172300000000016, 0.4059900000000023, 0.30965999999999694, -0.6544200000000002, -0.7530900000000009, -0.2402400000000009, 0.25974000000000075, -0.4874999999999994, -0.6598800000000014, -0.5214299999999992, -0.4005300000000016, -1.1906700000000003, -0.3049800000000009, 0.16653000000000162, -0.4067700000000001, -0.93912, -1.1696100000000025, -1.7195100000000012, -2.768220000000001, -2.368860000000001], [0.0, -0.29562000000000044, -0.7842899999999996, -0.8026200000000004, -1.5159299999999998, -1.1926200000000002, -0.92937, -0.7796100000000009, -0.3081000000000007, -0.8221200000000003, -1.1481599999999996, -1.2448800000000004, -1.0147800000000002, -0.11700000000000066, -0.7897500000000008, -0.7706400000000003, -1.1555700000000002, -1.0354499999999998, -0.15951000000000093, -1.0077600000000007, -1.0089299999999999, -0.8115900000000006, -0.8139299999999998, -0.68562, -1.3895700000000004, -1.1813099999999999, -0.09086999999999867, -0.017939999999998735, 0.9067500000000024, 0.6501299999999999, 1.2495599999999962, 1.2819299999999982, 0.9855299999999994, 0.8451300000000002, 1.0128300000000006, 0.4605899999999994, -0.0908699999999989, 0.5678399999999992, 0.1049100000000005, 0.883350000000001, 0.7831200000000003, 1.6165500000000015, 1.3743600000000025, 0.7312500000000002, 1.2530699999999997, 0.5428799999999989, 1.1173500000000032, 0.97071, 0.9488699999999985, 0.5342999999999998, -0.21567000000000003, 0.19227000000000039, 0.3217500000000011, 0.5772000000000004, 0.328380000000001, 0.44303999999999943, 0.2261999999999993, 0.01754999999999929, -0.5307900000000003, 0.620100000000001, 0.2402399999999998, -0.63102, -0.7429500000000003, -0.7281299999999999, -0.623610000000001, -0.4937400000000004, -0.4929600000000004, -0.42276000000000113, 0.22775999999999974, -0.20241000000000042, -0.4578600000000008, 0.14196000000000075, 0.38844000000000145, 0.6462300000000001, 0.617370000000002, 1.0549499999999976, -0.10452000000000061, -0.48087000000000046, -0.4539599999999999, -0.32565000000000044, 0.1864200000000007, 0.1228500000000019], [0.0, -0.9777300000000004, -1.4578200000000003, -1.2565800000000005, -1.4894100000000015, -1.1528400000000003, -0.8182199999999997, -1.2464400000000009, 0.10490999999999995, 0.1973400000000009, -0.20904000000000034, -0.17667000000000008, -0.5272800000000002, -0.23321999999999957, 0.37479000000000046, -0.8170500000000003, -1.3618800000000006, -0.6130799999999997, -0.09204000000000004, -1.0108800000000009, -0.53508, -0.62985, 0.09281999999999985, 0.41301000000000015, -0.04251000000000016, -0.4340700000000002, -0.4305599999999995, -0.25154999999999983, 0.3279899999999997, 0.6903000000000008, 1.232399999999999, 0.996449999999999, 1.0186799999999998, 0.16029000000000004, -0.32838000000000006, 0.39506999999999975, 0.11816999999999994, 0.18836999999999987, 0.9480899999999992, 1.0943400000000005, 0.7675199999999991, 0.9941100000000003, 1.2515100000000015, 1.4316900000000006, 0.9024599999999998, 1.5104699999999995, 1.8189600000000004, 1.4968199999999998, 0.9110399999999996, 0.25622999999999985, -0.5744699999999999, 0.11348999999999981, -0.007019999999999943, 0.3190199999999997, 0.3564600000000004, -0.18759000000000026, -0.31433999999999995, -0.24492000000000014, -0.2897699999999998, 0.40169999999999945, 0.30030000000000073, 0.37088999999999955, 0.5690099999999998, 0.5280600000000002, -0.4040399999999999, -0.37791000000000013, -0.30927000000000027, -0.2885999999999994, -0.41847000000000034, -0.42276000000000014, -0.24374999999999902, -0.16653000000000023, 0.39116999999999996, -0.0042900000000000715, 0.6863999999999999, 0.68445, 0.7094099999999997, -0.21839999999999993, 0.07877999999999996, 0.040170000000000594, -0.47814000000000023, -0.07643999999999992], [0.0, -0.3412500000000024, -0.8529300000000002, -0.8439600000000029, -0.6076200000000003, -0.7702500000000021, -0.836550000000001, -0.5616000000000012, -0.4539600000000006, -0.3030300000000007, -0.8346000000000011, -0.8899800000000015, -1.5771600000000006, -1.1087700000000018, -0.22113000000000038, -0.5830500000000005, -0.4446000000000002, -0.9137699999999997, -0.04836000000000096, -0.08892000000000133, 0.08228999999999881, 0.6314099999999989, 0.46058999999999894, 0.603329999999999, 0.029639999999999223, -0.7897500000000008, -0.7905300000000015, -0.2827500000000005, -0.09048000000000089, 0.4169099999999993, 1.219529999999999, 1.5837899999999991, 0.4379699999999993, 0.5900699999999992, 0.7320299999999985, 0.6559799999999989, 0.12557999999999925, 0.5487299999999987, 0.11816999999999916, 0.7523099999999991, 0.5834399999999991, 1.3501799999999986, 1.706249999999997, 1.377869999999999, 1.5794999999999995, 1.4979899999999988, 1.1469899999999993, 0.2690999999999991, 0.1790099999999995, 0.8037899999999987, 0.4379699999999995, 0.1595099999999987, 0.5826599999999988, 1.3579799999999986, 0.722669999999999, 0.41729999999999856, 0.001949999999998897, 0.7047299999999992, 0.7222799999999989, 0.6926399999999989, 0.5038799999999989, -0.28743000000000074, -0.5483400000000012, -0.65208, 0.10061999999999915, -0.6813300000000013, -0.3471000000000014, -0.5034900000000013, 0.3872699999999989, -0.07293000000000094, -0.22737000000000063, -0.16029000000000138, 0.19655999999999924, 0.7136999999999994, 0.6427199999999993, 0.6934199999999993, 0.1091999999999998, 0.5077799999999991, -0.09789000000000181, 0.2917199999999991, 0.5319599999999978, 0.6025499999999995], [0.0, -0.6509100000000007, -1.1781900000000003, -0.3880500000000002, -0.410280000000001, 0.01521000000000039, -0.6481800000000002, -0.9773400000000008, -0.9477000000000003, -0.3584100000000001, -0.5701799999999994, 0.2031900000000002, -0.45317999999999975, -0.9016799999999998, -0.6033300000000005, 0.09477000000000002, -0.7819500000000003, -0.4719000000000003, -0.3923400000000004, 0.0019499999999998963, -0.30848999999999993, 0.4052099999999996, 0.5054400000000006, 0.37907999999999875, 0.5986499999999988, -0.38103000000000004, -0.4290000000000002, -0.38688000000000006, -0.5756399999999999, -0.3751800000000005, -0.24375000000000008, 0.7246200000000003, 0.5413199999999991, -0.8349900000000003, -1.3018200000000006, -0.4890600000000003, -0.5432700000000003, -0.09905999999999993, -0.5413200000000002, 0.10139999999999882, 0.09750000000000003, 0.15873000000000048, -0.15911999999999993, 0.2433599999999998, 0.8849099999999999, 1.1017500000000007, 1.3271699999999997, 0.7737599999999989, 0.8092499999999991, 0.07292999999999983, -0.28938000000000036, -0.36464999999999986, -0.2589599999999999, -0.1396200000000003, 0.7398300000000004, 0.6594899999999997, 0.08813999999999944, 0.4800899999999986, 0.16535999999999873, -0.5822700000000003, -1.3076699999999999, -1.1181300000000007, -0.7187700000000006, -0.8619000000000019, -0.23517, -0.6727500000000003, -0.32759999999999956, -0.7706400000000003, -0.39428999999999986, -1.5806699999999998, -1.0553400000000002, -0.7683000000000002, -0.31707000000000063, 0.29990999999999923, 0.6240000000000006, 0.7792200000000007, 0.47618999999999945, -0.13728000000000018, -0.8736000000000006, -0.8802300000000006, -1.047930000000001, -0.9024599999999998], [0.0, -0.3502199999999994, -0.12011999999999973, -0.09672000000000003, -0.06006000000000028, -0.0686399999999992, 0.22853999999999952, -6.661338147750939e-16, -0.49179, -0.7246199999999998, -0.6606599999999996, -0.34358999999999984, -0.5764199999999993, 0.0015600000000000613, -0.1205099999999999, 0.17549999999999977, -0.3993600000000004, 0.08424000000000031, -0.0027299999999998437, 0.22151999999999927, 0.4843800000000007, 0.42510000000000037, 0.52416, -0.15404999999999985, -0.29016000000000025, -0.6224399999999995, -0.5307899999999998, -0.21333000000000002, -0.43056000000000033, -0.2156700000000001, 0.0990599999999997, 0.5791499999999999, 0.4785299999999998, 0.11115000000000008, -0.7714199999999998, -0.5241599999999997, -0.8092500000000002, -0.9586200000000005, -0.8478600000000006, -0.6591000000000006, -0.9071399999999991, -0.7059000000000002, -0.6649499999999999, -0.6590999999999996, -0.7620600000000004, -0.3467100000000004, -0.27923999999999993, 0.10685999999999984, 0.18330000000000057, 0.46994999999999976, 0.18954000000000037, 0.22269000000000017, 0.21372000000000002, 1.30728, 0.8478599999999991, 0.11582999999999988, -0.4988100000000001, -0.6516899999999999, -0.8256299999999999, -1.61733, -1.2249899999999991, -1.282710000000001, -1.1450399999999992, -0.4274400000000001, -0.31121999999999983, -0.9387300000000003, -0.8930999999999999, -0.22814999999999994, 0.32487000000000044, -0.41495999999999966, -0.5576999999999999, -0.9956700000000002, 0.056940000000000046, 0.8018399999999996, 0.5795399999999997, 1.2370800000000002, 1.1130600000000004, 0.4937400000000003, 0.40248000000000006, 1.056509999999999, 0.6996600000000001, 0.4758], [0.0, -0.49608000000000024, -0.32370000000000043, -1.2511199999999991, -0.9254699999999995, 0.3907800000000003, -0.23516999999999988, -0.6743100000000005, -0.42042000000000046, -0.009360000000000396, 0.15092999999999956, -0.28899000000000075, -0.3381300000000002, 0.5362499999999997, 0.4352399999999998, 0.3057599999999998, 0.7893600000000005, -0.1712100000000007, 0.7487999999999999, 0.7944299999999996, 0.7686900000000007, 0.2191799999999992, -0.21918000000000032, -0.7772700000000006, -0.4449900000000007, 0.5315700000000001, -0.17277000000000037, -0.12480000000000034, 0.10568999999999952, 0.66378, 1.3396500000000007, 1.1364599999999996, 0.6477899999999996, 0.06083999999999947, -0.21060000000000045, -0.4387499999999995, -0.1743300000000001, 0.41222999999999954, 0.05927999999999959, 0.22463999999999934, -0.5900700000000008, 0.6169799999999996, 0.09125999999999965, 0.38726999999999934, 1.1099400000000004, 0.5619899999999995, 0.6844499999999996, 0.64077, 0.3022499999999999, 0.27065999999999973, 0.14625, -0.3396899999999995, -0.1365000000000005, -0.3525600000000008, 0.001559999999999756, 0.5658899999999996, 0.2835299999999998, 0.15365999999999969, 0.6154199999999996, -0.09672000000000038, -0.3552900000000005, -0.036270000000000455, 0.10803000000000024, 1.1598600000000008, 1.313130000000001, 0.9410699999999995, 1.7042999999999995, 0.63141, 0.7445099999999998, 0.09476999999999941, 0.2433599999999998, -0.03627000000000054, -0.315120000000001, 0.41495999999999983, 0.6743099999999996, 0.4793100000000004, 0.2932799999999993, 0.18719999999999914, 0.4512299999999996, 0.4383599999999985, 0.3775199999999996, 0.9196200000000002], ...]
950911686 132.55983 103.608231 0.686767 good 271.37 0.199037 0.984667 0.109883 3.205108 3.977572 -0.080528 0.000000 6 850022280 19.019987 6 0.045403 0.263552 0.006341 0.554810 0.99 0.003619 0.247236 30.0 24.73 0.003470 [3.731497629554183, 3.7532976524451476, 3.78493101899488, 3.868431106673574, 3.879364451487391, 3.8982978047015617, 3.915997823287345, 4.023664603008775, 4.032397945512494, 4.063864645220553, 4.0899313392583725, 4.124898042641586, 4.155331407931266, 4.177031430717226, 4.196631451298092, 4.224664814067666, 4.243231500230154, 4.26039818492258, 4.293864886730727, 4.321531582448618, 4.348964944588165, 4.381398311977932, 4.407765006330766, 4.426065025546575, 4.514531785107155, 4.539198477674914, 4.58396519134856, 4.606898548762908, 4.621931897881907, 4.665031943138813, 4.694398640641779, 4.717565331634471, 4.748832031132521, 4.773965390856965, 4.793798745016176, 4.823298775992481, 4.996732291438486, 5.029565659248272, 5.071032369456773, 5.086065718575772, 5.120665754907302, 5.133899102136221, 5.180332484226608, 5.205532510687723, 5.230732537148838, 5.281865924174433, 5.316999294399321, 5.345199324010569, 5.350765996522481, 5.384899365697325, 5.446332763538376, 5.481699467341606, 5.507799494747761, 5.591666249478138, 5.615566274574196, 5.627999620963078, 5.644399638183804, 5.677199672625255, 5.742633074666482, 5.756766422840441, 5.772899773114489, 5.829133165495309, 5.886699892609522, 5.9554999648525655, 5.970233313656552, 5.9929333374925555, 6.007033352298179, 6.022300034995521, 6.052200066391844, 6.064300079097379, 6.094000110283693, 6.1221668065266055, 6.150500169611192, 6.17086685766376, 6.184900205732713, 6.196233550966548, 6.215300237654059, 6.242466932846927, 6.2756003009717265, 6.290366983144047, 6.305000331843027, 6.320400348013708, 6.339167034386205, 6.3489003779399695, 6.3715337350393035, 6.3880337523650335, 6.428933795311843, 6.44416714464085, 6.482833851909227, 6.498233868079908, 6.5224005601226445, 6.550967256785574, 6.568067274741331, 6.613033988624986, 6.659100703663691, 6.690467403266745, 6.716634097409569, 6.731000779161872, 6.754500803837912, 6.770334153796945, ...] [0.00010690838990357269, 0.00010058504581265109, 9.181273577565589e-05, 0.00010953235655119789, 8.55686252138378e-05, 9.20940518447222e-05, 9.284352088733032e-05, 0.00011530292639418877, 9.645169390496718e-05, 0.00010762123069659203, 8.740204126105368e-05, 0.00011449521919238621, 8.940808403455478e-05, 8.71157583643024e-05, 9.319094627471896e-05, 9.155244033155469e-05, 0.00010909036781569835, 0.00010506605882157986, 0.000107332211835438, 9.350005974211716e-05, 9.300430299233967e-05, 9.132217314906761e-05, 0.00012372853502206802, 8.60287891713236e-05, 8.820537933816384e-05, 8.231409874572382e-05, 0.00012562659559435679, 0.00010657271653558783, 8.310631617983084e-05, 9.073659258335997e-05, 0.00011592112807392915, 8.6416833107153e-05, 9.271073822110105e-05, 9.753921870917854e-05, 9.41529955422444e-05, 0.00010946532963250663, 8.297336514656142e-05, 0.00010186741337409796, 0.00011149402619126246, 9.284701450341381e-05, 8.419224149716058e-05, 0.0001129201455316056, 0.00010337348180346533, 0.0001009770884656845, 0.00010385475898778831, 9.507968773133435e-05, 0.00012719193764021563, 0.00011883149547523376, 8.815354754484784e-05, 9.801813033658714e-05, 8.211273176568176e-05, 0.00010299141489756192, 8.730715801556646e-05, 8.660285343148368e-05, 9.595364736344339e-05, 9.24349445909523e-05, 9.207414244222223e-05, 9.657472811957065e-05, 8.953423303940138e-05, 9.85448413666997e-05, 9.150233430040041e-05, 0.00011925832275876609, 9.289823175703322e-05, 0.00010491669200189398, 9.538128361038901e-05, 8.694089235638291e-05, 9.263762483390769e-05, 0.00010665680745380022, 0.00012352513921919193, 0.0001184746920437077, 0.00010466602715249042, 9.263259907775865e-05, 0.00012482470547379206, 0.00012349230764635897, 0.0001055932412794049, 0.00010141333588511429, 0.00010815626747684095, 0.00011950562026736625, 0.00010806500412271737, 0.00010725176606364527, 8.216468141592589e-05, 0.00010029313103840614, 8.689024755070009e-05, 0.00011299679462664252, 9.239960434922084e-05, 8.54349838757037e-05, 8.811233971176647e-05, 9.256873745942256e-05, 9.721409353626026e-05, 9.613151872302988e-05, 0.00011415960475286542, 0.0001297261983288388, 8.207149025919237e-05, 9.1998192070402e-05, 0.00010779112987682654, 0.00011605385181169434, 0.00013682084024912642, 8.739629994498392e-05, 9.830527190524329e-05, 0.00010417219820532286, ...] [[0.0, 3.463199999999997, -0.3712800000000013, 1.2027600000000005, -1.0335000000000036, 2.220660000000002, 1.8349500000000014, -3.3165599999999973, 3.2966700000000007, 4.981080000000007, -0.4520099999999997, 3.014699999999999, -1.3166400000000014, 1.1614199999999995, 4.111770000000001, 0.9375599999999988, 0.17862000000000178, -0.9203999999999996, 3.121169999999999, -0.4094999999999992, 2.4156600000000004, -3.2112599999999993, -1.8739500000000007, 4.9101, -1.9152900000000002, -2.5330500000000002, 0.03354000000000035, -4.202250000000002, -1.1286599999999996, -0.00585000000000091, -1.9016400000000027, 1.7062499999999994, 4.060290000000001, -1.3529099999999996, -0.7874099999999996, -1.616160000000003, -1.556099999999998, 2.627820000000001, -4.875780000000004, -1.8435299999999972, 0.5495099999999995, -2.272139999999998, -1.9336199999999995, 0.9340500000000006, 1.4242800000000009, 3.3157800000000006, -0.17784000000000122, 0.8630700000000011, -4.794659999999999, 0.3486600000000008, -2.1278399999999977, -2.544749999999999, 3.814590000000003, 1.9078799999999991, 3.4986899999999963, 2.971020000000001, 1.6758299999999975, 3.841500000000001, 3.129750000000001, -1.3938599999999997, 0.7277400000000003, -0.3767399999999995, 3.351659999999999, 1.8595199999999985, 1.3349700000000009, 2.2288499999999996, 0.7838999999999979, 4.420649999999995, 0.22893000000000108, -2.040480000000001, -1.18521, 3.9155999999999995, 2.9702399999999995, 2.0077199999999995, 1.9769100000000006, 0.34866000000000147, 0.8384999999999997, -4.0162200000000015, 2.2308, 3.1215600000000006, -0.9254700000000001, 0.2792399999999981], [0.0, 0.6185400000000005, -0.39233999999999936, -1.16649, -1.2815399999999988, -1.2791999999999986, -1.1282699999999992, -1.04715, -0.950039999999999, -1.334190000000001, -0.5397599999999998, -0.6185399999999999, 0.21878999999999993, 0.3268200000000001, 0.5951399999999999, 0.29679000000000144, -0.7581599999999998, -1.4281799999999991, -1.1832599999999986, -1.9538999999999989, -1.3669500000000008, -1.9796400000000014, -2.6469299999999985, -2.95932, -2.52837, -2.3446800000000003, -1.7752800000000002, -1.3224899999999977, -1.5338700000000014, -2.1212099999999983, -1.0284300000000006, -1.0128299999999995, -0.8353800000000001, -1.2008099999999993, -1.3341899999999993, -1.0834199999999994, -0.7499699999999997, -0.3790799999999994, -0.19031999999999916, -0.4648799999999996, -1.4102400000000002, -0.9621299999999996, 0.15249000000000007, 0.550289999999999, 0.5600400000000009, -0.9141599999999996, -1.3490099999999996, -1.5369899999999994, -0.9586199999999989, -0.7655700000000002, -1.1618100000000002, -1.7397899999999993, -0.70395, -1.24644, -0.98475, -0.39780000000000015, -0.07292999999999902, 0.19890000000000047, 1.059630000000001, 0.4005300000000004, 0.4001400000000006, -0.021839999999999415, 0.47345999999999977, 0.9161100000000022, 0.8268000000000011, 1.1356799999999985, 0.9426299999999996, 0.4668300000000011, -0.26480999999999977, -1.0104899999999988, -0.29093999999999975, -0.5951399999999994, -0.9317099999999989, -1.0951200000000005, -1.7971199999999976, -0.5877299999999996, -0.46488, -0.7519199999999991, -0.8954399999999993, 0.003510000000000346, -0.4652699999999993, -0.06473999999999938], [0.0, -0.5740800000000039, -1.4094599999999997, -0.9500400000000027, -0.7499699999999989, -1.3295099999999995, -1.3895700000000057, -0.27027000000000134, -0.37751999999999475, -0.9781200000000032, -0.8158800000000008, 0.10880999999999963, 0.5210400000000002, 0.7281299999999993, 0.4941299999999986, 0.18602999999999748, -0.209820000000001, 0.10763999999999863, -0.4668300000000012, -1.6824600000000034, -1.5677999999999974, -2.0408699999999973, -3.0482400000000007, -4.203809999999997, -3.2256899999999984, -3.03615, -3.575520000000002, -1.614600000000002, -0.5849999999999995, 0.30498000000000003, 0.39780000000000015, -0.2800200000000004, -1.5826200000000048, -1.5568799999999978, -2.5521600000000024, -1.564680000000001, -0.38961000000000157, -0.4925700000000033, -0.6863999999999986, -0.43602000000000274, -0.7936500000000009, -1.4714700000000045, -0.23633999999999933, 0.9605699999999986, 0.5471699999999984, -0.05186999999999742, -1.0689900000000048, -0.6150300000000004, 0.3077100000000006, 0.6980999999999999, -0.296400000000002, -0.5311800000000009, 0.0417300000000016, 0.12869999999999893, -1.1368500000000021, -1.159079999999999, -0.9968399999999984, -0.7967699999999995, -0.054210000000001646, 0.14040000000000097, 0.2324399999999991, -0.09126000000000056, 0.3447600000000004, 0.35021999999999975, 0.9250799999999988, 1.3014299999999999, 0.5729099999999987, -0.7097999999999991, 0.7058999999999982, 0.6107399999999998, -0.8267999999999986, -1.1013600000000014, -0.6364799999999979, -0.10451999999999861, 0.6103500000000002, 0.12168000000000401, 0.410280000000002, 0.005070000000000796, -1.1255399999999982, -1.929720000000004, -1.2070499999999993, -1.2288899999999998], [0.0, 1.2589199999999892, 0.6754799999999808, 0.024959999999992988, -0.6598800000000065, -0.686010000000012, 0.02651999999999788, 0.43133999999998984, 0.8829599999999935, 0.5105099999999947, 1.2210899999999931, 1.3614899999999857, 1.1341200000000011, 0.8232899999999859, 0.43328999999999596, 0.515969999999994, 0.15833999999999548, 0.06395999999997848, 0.43836000000000297, -0.6427200000000024, -0.5818800000000035, -1.0015200000000046, -1.20588000000002, -1.6450199999999917, -0.8732100000000127, -0.1595100000000187, 0.03783000000000669, 0.895050000000003, 0.5865599999999898, 0.9707099999999933, 1.2920699999999918, 0.7916999999999881, 1.0654799999999742, 0.43289999999998763, 0.12986999999999327, 0.33227999999999724, 0.9324899999999943, 0.9605699999999899, 1.4266199999999927, 0.05654999999998722, 0.15716999999999537, -0.29133000000000386, 1.3821599999999972, 1.3618799999999887, 0.8474699999999871, 0.24608999999998815, 0.17823000000000278, 0.14156999999999265, 1.0775700000000068, 0.3311100000000078, -0.25389000000001083, -0.2991299999999981, 0.829529999999993, 0.11348999999999698, 0.1926600000000036, 1.5139800000000037, 1.0366199999999868, 2.102880000000006, 1.7074199999999884, 1.4504099999999926, 1.2780299999999905, 0.9964499999999852, 1.1649299999999965, 1.9843199999999968, 1.5011100000000024, 1.1181299999999847, 1.444949999999995, 1.0401299999999924, 0.5268899999999945, 0.25973999999999187, 0.4886699999999937, 0.22658999999999452, 0.1969499999999993, 0.08969999999998457, 0.07331999999998651, -0.0893100000000242, 0.7667399999999898, 1.0370099999999915, 1.1504999999999992, 1.0444199999999881, 1.0705499999999795, 1.4445599999999992], [0.0, -0.11738999999999788, -0.19577999999999873, -0.16613999999999807, 0.0971100000000018, 0.4543500000000017, 0.49140000000000195, 0.9321000000000017, 0.5733000000000024, -0.056159999999997434, 0.32097000000000225, 1.2569700000000021, 2.0845500000000006, 2.465970000000002, 1.7994600000000016, 0.4641000000000017, 0.06123000000000178, -0.31472999999999784, -0.7257899999999985, -1.4254499999999988, -1.6177199999999972, -3.4265399999999966, -3.320849999999997, -2.6586299999999974, -1.3731899999999984, -0.8486399999999975, -0.6064499999999976, 0.5889000000000015, 1.223040000000002, 1.6793400000000012, 2.081040000000002, 1.3638300000000014, 0.5729100000000014, 0.8525400000000019, 0.6614400000000014, 0.670800000000001, 1.7351099999999997, 2.130180000000002, 1.5120300000000026, -0.08501999999999843, 0.06435000000000246, 0.019500000000001738, 1.1380200000000016, 1.0245300000000026, 0.9348300000000016, 0.2620800000000016, -0.2078699999999989, 0.6602700000000015, 1.112280000000002, 0.8794500000000021, 0.20553000000000182, 0.7215000000000014, 0.8802300000000014, -0.4715099999999991, 0.48672000000000176, 0.17511000000000176, -0.44420999999999855, 0.24960000000000143, 1.9472700000000018, 1.900860000000001, 1.7807400000000024, 1.953510000000001, 1.5276300000000007, 0.7441200000000016, 0.3989700000000018, 1.1489400000000012, 0.6013800000000018, -0.175109999999998, 0.5109000000000019, 0.09399000000000157, 0.3077100000000013, 0.2683200000000019, 0.9157200000000016, 0.6481800000000013, 1.2468300000000019, 1.8478200000000031, 0.9492600000000013, 0.24414000000000224, -0.15794999999999826, 0.0019500000000021167, 0.21450000000000036, 1.0288200000000016], [0.0, 0.32798999999999645, 0.1013999999999986, 0.5409299999999992, -0.5982600000000047, -0.9223499999999998, -1.1278800000000007, -0.29913000000000123, -0.2223000000000006, -0.7328100000000002, 0.14156999999999798, 0.36737999999999915, 0.3697199999999996, 0.37791000000000086, 0.2164499999999996, -0.7195500000000008, -1.239030000000001, -1.2351300000000012, -2.221050000000001, -4.100070000000003, -3.856710000000003, -3.8742600000000005, -3.857490000000001, -3.610619999999998, -2.654340000000004, -1.362269999999997, -0.351389999999999, 0.5783699999999998, 0.9824099999999991, 0.2987399999999987, 0.6965399999999984, -0.2254200000000015, -0.5768099999999952, -0.4855500000000017, -0.5873400000000024, -0.469949999999999, 0.4956899999999991, 0.2823600000000006, 0.3946799999999988, -0.22971000000000075, -0.957450000000005, -0.51207, 0.23244000000000087, 0.13298999999999772, -0.5175300000000016, -0.5889000000000002, -1.0065900000000028, -1.0381800000000028, -0.8599500000000018, -1.0085400000000018, -1.1559600000000025, -1.0822500000000015, -0.6669000000000023, -0.6263399999999986, -0.42900000000000027, -0.34086000000000016, -0.5362500000000021, 0.08384999999999843, -0.14040000000000297, -0.3486600000000002, 0.828749999999999, -0.012480000000001823, 0.3108299999999986, 0.5537999999999992, -0.47190000000000154, -0.4559099999999998, -0.6770400000000003, -0.5877300000000023, -0.6076200000000012, -0.678210000000004, -1.1083800000000008, -1.4562600000000034, -0.832650000000001, 0.24453000000000036, -0.047190000000001175, -0.5553600000000039, -0.3123900000000024, -0.7940400000000021, -1.4215499999999994, -1.3345800000000039, -0.1513200000000019, 0.30186], [0.0, 0.05226000000000042, 1.1208599999999982, 0.7222799999999996, 1.1415299999999986, 0.6076200000000014, -0.3268199999999979, 0.72891, 0.30303000000000035, 0.018720000000000514, -0.13494000000000117, 1.347449999999999, 1.9823699999999995, 2.5474799999999984, 3.673800000000001, 3.0146999999999995, 2.12745, 0.6325799999999993, -0.1357199999999994, -0.1790100000000001, -0.4212000000000007, -2.3973300000000015, -4.61331, -4.972889999999998, -3.5626499999999997, -2.29827, -2.1375899999999985, 0.046409999999998286, 1.1758499999999987, 0.9223499999999998, 0.4379699999999995, -0.8615100000000004, -1.25736, -0.7776600000000008, -0.9266399999999994, 0.06084000000000045, 1.4574299999999951, 1.350569999999999, 0.22424999999999917, -0.36582000000000003, -0.5970900000000006, -0.8853000000000004, 0.896609999999999, 1.75305, 1.6142100000000013, 0.14664000000000144, -0.3841500000000009, -0.17004000000000064, 0.1111500000000003, 0.19109999999999872, 0.7043400000000002, 0.6080099999999997, 1.35135, 0.9032399999999985, 0.3334499999999998, -0.8396700000000007, -0.6758700000000002, 0.7335899999999995, 1.1068199999999995, 1.7448600000000019, 1.613429999999997, 1.5272400000000022, 0.19421999999999762, 0.19655999999999985, -0.29367000000000076, 0.3591900000000008, 1.0050299999999992, 0.892709999999997, 0.30576000000000003, 0.5495100000000004, 0.3174600000000003, 0.7000499999999992, 0.4949100000000002, 0.44459999999999855, 0.47657999999999934, 1.16493, 1.3295099999999986, 1.0381799999999988, 0.9309299999999996, 0.4664399999999991, -0.1290900000000017, 0.0776100000000004], [0.0, 0.17238000000000042, 0.7425600000000006, 0.653640000000001, 0.4095000000000004, -0.038219999999998366, -0.18563999999999936, -0.11387999999999887, 0.2499900000000006, -0.002340000000000231, 0.9356100000000002, 1.351350000000001, 1.9749600000000007, 2.781480000000002, 2.623530000000001, 1.4796600000000006, 0.07488000000000206, -0.912210000000002, -3.0927000000000007, -7.392449999999988, -9.287459999999998, -8.933729999999995, -7.441199999999991, -4.619159999999996, -2.496000000000002, -0.021059999999999413, 1.834950000000001, 3.0591600000000003, 4.030260000000003, 3.986580000000002, 3.1613399999999996, 2.3575500000000007, 1.7175600000000006, 1.6177200000000012, 1.14894, 0.8537100000000003, 1.64502, 1.6188900000000004, 1.5303600000000013, 0.8782800000000004, 0.12362999999999968, 0.2780700000000029, 1.0639200000000004, 0.8732100000000003, 0.6138600000000005, -0.15171, -0.6813299999999989, 0.02417999999999987, 0.6606599999999999, 0.05850000000000111, 0.39936000000000127, 0.6068400000000006, 0.5222100000000003, 0.2819700000000003, 0.8240700000000006, 0.6193200000000012, 0.7491900000000007, 0.7659600000000015, 1.0920000000000014, 0.5850000000000016, 1.116960000000001, 1.2873900000000005, 1.1817000000000006, 0.4297800000000016, 0.09828000000000081, -0.6688499999999988, -0.703560000000002, 0.05694000000000066, 0.7761000000000005, 0.42276000000000025, -0.6852299999999996, 0.15522000000000014, 0.8490300000000005, 0.6002100000000002, 1.0810800000000005, 1.0182900000000006, 0.9048000000000018, 0.12284999999999924, -0.019889999999999075, -0.3322800000000019, 0.38766000000000145, 0.863850000000001], [0.0, -0.4453800000000019, 0.1294799999999956, -0.3252600000000019, -0.32760000000000233, -1.1618100000000031, -0.9348300000000034, 0.2187899999999967, 0.9613499999999999, 0.9746099999999935, 1.1614199999999975, 2.6254799999999943, 3.3122699999999945, 5.542289999999997, 5.456489999999994, 4.279469999999999, 2.93475, 1.4671799999999933, 0.5249399999999973, -0.6450600000000029, -6.753240000000006, -14.11917, -19.211790000000004, -16.973970000000005, -11.33457, -5.100030000000004, -1.5081300000000035, 2.724539999999995, 4.360589999999996, 4.653089999999995, 4.1488199999999935, 2.9983199999999943, 2.800589999999999, 1.9609200000000007, 1.6200599999999952, 1.7019599999999984, 2.1808799999999913, 1.5771599999999992, 1.455089999999998, 2.1001499999999984, 1.8751199999999963, 1.104869999999996, 1.2070499999999966, 1.4761500000000018, 1.1781899999999972, 1.0943399999999968, 0.8899799999999969, 0.9445800000000006, 0.3139499999999962, 0.6384299999999965, 0.8084699999999989, 1.0350599999999996, 0.4508399999999986, 0.8322599999999953, 0.23867999999999645, 0.15755999999999482, 0.11933999999999756, 0.30965999999999916, 0.27884999999999627, 0.540930000000003, 0.817829999999999, 0.8845199999999975, 0.3580199999999967, -0.01911000000000085, 0.09281999999999568, -0.709020000000004, -0.30888000000000426, -0.008190000000001696, 1.8092099999999993, 1.2768599999999997, 0.5580899999999973, 0.18368999999999724, 0.3010799999999967, 0.024569999999995762, -0.0015600000000044467, 0.41885999999999823, 1.0034699999999974, 1.3568099999999972, 0.3463199999999995, 0.8271899999999937, -0.04212000000000282, -0.2632500000000022], [0.0, 0.8377200000000053, 0.9087000000000027, 0.7601100000000036, 0.7683000000000049, -0.31628999999999685, 0.3935100000000049, 1.4511900000000044, 1.8306600000000055, 1.7869800000000047, 1.7752800000000026, 3.3575100000000035, 4.349280000000004, 3.9491400000000034, 3.9397800000000016, 2.1286200000000037, -0.09203999999999501, -3.2510399999999904, -10.566269999999983, -21.80489999999999, -25.563330000000004, -19.846710000000034, -11.812319999999998, -3.8313599999999925, 1.8408000000000033, 6.9392700000000005, 8.691150000000006, 10.234380000000003, 9.863879999999998, 8.814780000000006, 7.349160000000005, 5.210010000000002, 5.142540000000004, 4.067310000000003, 2.7662700000000036, 2.5022400000000036, 2.6344500000000046, 2.9760900000000037, 2.5599600000000033, 2.0369700000000037, 1.5022800000000038, 1.3829400000000047, 1.807260000000003, 1.4527500000000035, 2.0295600000000036, 1.6122600000000045, 1.3326300000000033, 0.6942000000000057, 0.5070000000000037, 0.18954000000000315, 0.8299200000000027, 1.6734900000000035, 1.886040000000004, 1.8993000000000038, 2.8267200000000043, 2.590770000000004, 1.4738100000000036, 1.7109300000000034, 1.451190000000004, 0.5350800000000047, 1.166880000000003, 2.0978100000000035, 1.1282700000000032, 2.0069400000000037, 0.3833700000000033, 0.18057000000000611, -0.041729999999996714, -0.44186999999999577, 1.425840000000004, 1.581060000000005, 0.1950000000000025, 0.902460000000002, 0.9898200000000041, 1.5561000000000047, 1.471470000000005, 1.0904400000000019, 0.42588000000000115, 0.9379500000000043, 0.07800000000000429, 1.0561200000000028, 0.7589400000000062, 0.6942000000000035], [0.0, -0.9278099999999987, -0.21293999999999969, -0.9094799999999978, -0.7125299999999986, -1.0767900000000012, -0.8451300000000004, 0.34632000000000085, 0.709410000000001, 0.5732999999999984, 1.7253600000000002, 3.1125900000000035, 4.5680700000000005, 6.789509999999995, 7.570290000000005, 6.863219999999991, 5.683080000000006, 5.0341200000000015, 9.874019999999998, 20.889569999999992, 15.460379999999994, -4.529849999999998, -20.13375000000001, -23.225670000000008, -18.790980000000005, -12.661740000000009, -8.713379999999994, -5.287229999999997, -2.62431, -2.57322, -2.2604399999999996, -2.2346999999999997, -2.1317399999999997, -1.3029900000000005, -0.4664399999999982, -0.35099999999999953, 0.2258100000000014, 1.2359099999999996, 1.8462599999999982, 1.9394700000000018, 0.8256300000000021, -0.14156999999999975, 0.8463000000000025, 1.107990000000001, 1.3720200000000018, 0.3155100000000002, -1.033499999999999, -0.033540000000001235, 0.1556100000000007, 0.3841500000000022, -0.2507700000000006, -1.2671099999999995, -0.5623799999999983, 0.029249999999998, -0.6704100000000008, -1.0974599999999997, -1.097460000000001, -0.9324900000000009, -0.36582000000000026, 0.7203299999999992, 0.6154200000000007, 0.12090000000000112, -0.03626999999999958, -0.05147999999999664, -0.7031700000000014, -1.1879399999999998, 0.28860000000000063, 0.06591000000000014, 0.6583199999999967, 0.47892000000000134, -0.35256, -0.07799999999999718, -0.15912000000000281, -1.0295999999999996, -0.4855499999999995, -0.6973199999999988, -0.2749499999999996, -0.7624500000000001, -1.2300599999999995, -1.3786499999999995, -1.8876000000000008, -1.9106099999999993], [0.0, -0.6778199999999998, -1.0471500000000007, -1.7990700000000004, -1.8450900000000008, -2.048670000000001, -1.2698400000000003, -0.9141600000000006, 0.010919999999999236, 0.2566199999999994, 0.6704099999999996, 3.580589999999995, 6.454499999999996, 6.538739999999994, 4.789980000000003, 1.0393499999999993, -5.2470599999999985, -15.821130000000002, -49.65831, -99.38447999999998, -104.14598999999995, -72.44172000000003, -39.18018000000004, -13.136759999999999, 6.747389999999998, 19.19697, 25.071930000000044, 28.413840000000032, 27.43026000000002, 24.624990000000007, 20.52336, 18.028530000000003, 15.139800000000001, 12.71634000000001, 10.926240000000007, 8.901359999999997, 7.883069999999984, 7.413119999999996, 6.8573699999999915, 6.1737, 5.742359999999995, 4.697939999999997, 4.662059999999993, 5.0973, 3.987359999999997, 2.8122899999999986, 3.004169999999998, 1.8240299999999987, 1.4901900000000001, 0.7160399999999992, 1.5580499999999984, 1.6438500000000005, 2.007719999999998, 1.3825500000000006, 1.4983799999999992, 0.5779799999999999, 0.3915599999999997, 0.6914699999999977, 0.4906199999999973, -0.21059999999999993, 0.34709999999999963, 0.20942999999999895, 0.3283800000000001, -0.19851000000000085, -1.4714700000000005, -1.1243700000000003, -1.5970500000000003, -0.12129000000000073, 0.8977800000000004, 1.1805299999999992, -0.32760000000000006, 0.02105999999999969, -0.10764000000000114, -0.0553800000000004, -0.21138000000000054, -1.2312300000000014, -0.8131500000000002, -0.9906000000000011, -1.8653700000000013, -1.2706200000000005, -2.1407100000000003, -1.7004000000000006], [0.0, -1.0619700000000085, -1.7144399999999997, -2.4328200000000013, -2.0256599999999985, -1.3392600000000003, -1.1477700000000048, -0.7214999999999998, 0.14663999999999877, 1.1364599999999976, 2.1777599999999984, 4.212779999999999, 4.256459999999999, 5.176859999999998, 4.029479999999999, 2.5700999999999983, -0.16224000000000327, -1.9546800000000006, -5.2926899999999995, -11.63487, -15.351959999999998, -14.504490000000008, -12.13641000000002, -7.586279999999994, -2.495609999999999, 0.2768999999999986, 2.754959999999999, 4.4717400000000005, 4.606289999999998, 3.448769999999998, 2.8313999999999986, 1.4566499999999996, 0.26870999999999956, 0.9246899999999973, -0.16419000000000006, 0.12128999999999701, -0.3619200000000009, -0.4098900000000012, -0.05577000000000387, 0.705899999999998, -0.6341400000000021, -0.08190000000000275, 0.1563899999999987, -0.2542800000000014, 0.2749499999999969, -0.7308600000000016, -1.5572700000000008, -1.6169399999999978, -1.2269400000000035, -1.2070500000000015, -0.9500399999999996, -0.5577000000000014, -0.5908500000000014, -1.2940200000000015, -0.9796800000000037, -0.410280000000002, -1.0951200000000005, -0.8338199999999985, -0.3541200000000031, -0.7191600000000027, -0.7074600000000024, -1.104870000000001, -0.15170999999999957, -1.0615800000000064, -1.6255200000000016, -1.068990000000002, -1.3868399999999976, -1.5646800000000027, -0.9457500000000012, -1.9593599999999993, -1.7600700000000016, -1.2596999999999996, -1.1235900000000028, -1.05729, -0.9441900000000008, -0.9999599999999997, -0.749580000000003, -1.1083799999999986, -0.9363899999999994, -0.8069100000000016, -1.6395599999999995, -1.5151500000000029], [0.0, -0.33656999999999737, -0.9071400000000014, -2.091569999999999, -1.8154499999999985, -2.794349999999997, -2.3723699999999974, -1.791660000000002, -0.5537999999999959, 0.17003999999999975, 2.010840000000002, 5.773560000000004, 9.273420000000002, 9.724650000000002, 6.416670000000005, 3.344250000000003, 1.1115000000000024, -1.6890900000000002, 0.745290000000002, 1.0089300000000019, -5.282549999999992, -8.423610000000004, -7.893209999999999, -4.497479999999999, -0.6431099999999996, 1.3408200000000023, 2.7140100000000027, 1.595490000000002, 0.939510000000001, -0.060839999999998895, -2.103659999999996, -2.558010000000002, -2.992469999999999, -3.1293599999999975, -3.8781599999999994, -4.531019999999992, -4.027920000000001, -2.827109999999995, -2.4659699999999987, -3.1480799999999975, -2.895749999999996, -3.832919999999997, -3.297449999999997, -2.589989999999996, -1.7378399999999985, -2.5985699999999987, -3.0076799999999997, -3.783779999999992, -4.543889999999995, -3.4768499999999936, -3.774030000000005, -3.1340399999999997, -2.552550000000002, -1.7741100000000012, -1.621620000000001, -1.8770700000000016, -2.0190300000000025, -1.6610100000000037, -2.2191, -2.6016899999999987, -2.440619999999994, -2.4402300000000032, -2.1216000000000035, -1.9698900000000013, -2.112630000000003, -2.141099999999998, -3.4105499999999935, -3.570839999999997, -1.9585799999999978, -1.768259999999998, -2.253029999999998, -1.198859999999999, -0.39467999999999837, -0.35021999999999975, -0.8279700000000036, -1.2955799999999975, -1.3837199999999976, -0.5701799999999979, -0.881399999999998, -0.4258799999999998, -0.11036999999999786, -0.7932600000000005], [0.0, -0.5526300000000011, -2.4792300000000007, -2.545530000000001, -0.6630000000000005, -1.299480000000001, -1.75188, -0.702000000000002, -0.89388, -0.7316400000000004, -0.34398000000000173, 1.8447000000000018, 1.7838599999999976, 1.7183400000000044, 2.167619999999999, 1.2620400000000007, -0.4898400000000005, -2.150850000000001, -3.130140000000001, -2.7300000000000004, -2.299440000000001, -3.31734, -4.415970000000001, -3.1933200000000017, -2.350530000000002, -1.39893, -1.6153800000000003, -0.7382700000000003, 0.19304999999999928, -0.2749500000000007, -0.7117500000000005, -0.7897500000000004, -1.9698900000000013, -1.4550900000000007, -1.8322200000000006, -1.6551600000000004, -1.5993900000000005, -0.7995, -0.5846100000000005, -0.44382000000000077, -0.3342300000000016, -0.5385900000000003, -1.8337800000000013, -2.1426600000000007, -2.10015, -2.11614, -2.6835900000000006, -2.182440000000001, -1.3739700000000004, -1.4855100000000006, -1.7585100000000002, -1.4469, -1.3353600000000012, -1.8084300000000006, -2.3002200000000004, -2.401230000000001, -1.644240000000001, -0.8985600000000006, -1.8275400000000004, -1.2195300000000007, -1.2398100000000003, -1.2355200000000015, -2.2140300000000006, -1.6095300000000008, -0.20787000000000022, -1.3092300000000008, -1.3033800000000002, -0.3798599999999992, -0.5066100000000011, -1.1668800000000008, -1.5081300000000009, -1.230840000000002, -0.69381, -0.47306999999999766, -1.05105, -2.491710000000002, -2.7346799999999987, -2.828279999999998, -2.1762, -1.9461000000000004, -1.5771600000000008, -1.1746800000000004], [0.0, -0.9605700000000008, -1.4422200000000003, -1.9180199999999994, -2.538510000000001, -2.421900000000002, -1.5927600000000015, -1.1278800000000018, -0.01989000000000063, -0.03626999999999991, 2.1648899999999998, 4.8757799999999945, 6.506369999999995, 6.41199, 4.645680000000004, 1.9379099999999994, 0.25232999999999983, -1.157130000000001, -0.8927100000000008, -0.1540499999999998, -2.4187799999999995, -4.337580000000001, -5.803589999999997, -4.787249999999996, -3.5684999999999967, -2.4917100000000003, -0.554970000000002, -0.3786900000000013, -0.5951400000000033, -1.2967500000000003, -1.499159999999999, -1.6032900000000012, -2.7491100000000013, -2.230800000000004, -2.981550000000001, -2.5790700000000015, -2.2733100000000004, -1.95234, -1.8965700000000019, -1.910610000000002, -2.4499800000000014, -2.6980200000000023, -1.4683500000000014, -2.1789299999999976, -1.864199999999999, -2.4238500000000016, -2.416830000000004, -2.5143300000000037, -3.150810000000002, -2.196480000000001, -2.2167599999999976, -1.6173300000000013, -1.4067300000000018, -1.5970500000000007, -1.9098300000000008, -1.816230000000001, -1.969110000000002, -1.7487599999999999, -1.3100100000000008, -1.8887700000000005, -1.7608500000000014, -0.9243000000000023, -0.2593500000000021, -0.28392000000000095, -1.2850500000000002, -1.9527300000000003, -2.6531700000000007, -1.6828500000000042, -0.6552000000000007, -0.9414600000000013, -1.4749800000000004, 0.009359999999999924, 0.6809400000000002, -0.6084000000000014, -1.0951199999999992, -1.347060000000002, -1.0526100000000014, -0.9480900000000012, -0.8981699999999999, -1.130610000000001, -0.7230600000000025, -1.3611], [0.0, -1.123979999999999, -1.8333899999999983, -1.9355700000000016, -1.4905799999999978, -0.07059000000000548, -0.4313399999999996, -0.08151000000000064, 0.24960000000000182, 1.4570399999999966, 1.49214, 2.994810000000002, 3.4916699999999956, 2.616120000000003, 2.1988199999999916, 0.712139999999998, -0.6883500000000016, -1.3817699999999968, -1.7604600000000015, -0.8100299999999998, -1.5631199999999996, -1.8735600000000003, -1.941030000000001, -1.6571099999999959, -1.1465999999999985, -1.568579999999998, -1.2589199999999985, -0.12440999999999569, -0.10062000000000282, -0.15756000000000192, -0.3689400000000038, -0.44459999999999855, -0.3872699999999991, 0.1556100000000038, -0.3420300000000003, 0.561600000000003, 0.691469999999998, -0.11504999999999477, 0.3486599999999971, 0.7862400000000003, 1.07561999999999, 0.30225000000000257, -0.06162000000000134, -0.3240899999999982, 0.26676000000000144, -0.819780000000002, -1.1551799999999997, -0.49763999999999786, -0.4867199999999947, -0.8806199999999968, -0.9157200000000021, -1.1387999999999958, -1.0569000000000006, -0.23828999999999922, -0.9913799999999982, -0.7952100000000013, -0.3903899999999991, -0.8143199999999982, -1.1621999999999995, -1.1606400000000008, -0.5346899999999986, 0.07760999999999729, -0.6310199999999995, -1.4972100000000013, -1.0214100000000035, -0.29756999999999945, -0.5756400000000008, 0.3279899999999998, 0.5947499999999977, 0.004680000000003126, -0.5440500000000021, 0.004289999999999239, 0.2620800000000001, 0.579539999999998, 0.09867000000000026, 0.2702699999999991, -0.8162700000000016, -1.6149900000000001, -0.9945000000000035, 0.023790000000005307, 0.6403799999999951, 0.33813000000000404], [0.0, 0.5011500000000007, 0.3198000000000034, 0.5241599999999993, 0.503100000000001, -0.6025499999999981, 0.180570000000003, 0.011700000000000266, 0.36035999999999957, 1.7475900000000006, 2.76939, 3.3625800000000003, 4.977180000000001, 3.833310000000001, 2.7179100000000003, 1.3174199999999994, 0.41691000000000145, -0.29483999999999844, 0.31355999999999984, 0.7651799999999993, 0.26441999999999943, 0.41066999999999965, -1.238250000000002, -0.9067500000000006, -0.4126200000000013, 0.16458000000000306, 0.8642399999999988, 1.2756899999999989, -0.17978999999999834, -0.9051900000000006, -1.3720200000000053, -0.8295299999999988, -1.917240000000001, -1.2971399999999988, -1.0116599999999978, -0.8240699999999994, 0.11310000000000064, 1.47303, 1.6805100000000004, 0.7168200000000005, -0.29367000000000054, -1.5053999999999994, -0.6364800000000042, -1.0553400000000015, -0.6423299999999958, -0.596700000000002, -1.8224699999999996, -1.4925299999999968, -1.5884700000000036, 0.15795000000000048, 0.6528599999999998, -0.6789900000000002, 0.9960600000000006, 1.19769, 0.9149400000000001, 1.6688099999999992, 1.02297, -0.23984999999999834, -0.557310000000002, -0.5931899999999972, 0.1368900000000024, 0.7253999999999989, 1.05105, 0.8162700000000005, 0.08930999999999933, -0.1364999999999994, -0.05187000000000097, 0.6345299999999996, 1.1052600000000004, 1.1103300000000003, 1.6937699999999998, 2.2830600000000003, 1.4956499999999995, 0.8966100000000019, 1.1099400000000024, 0.977729999999998, 1.0389599999999999, 1.1497199999999999, 1.2538500000000008, 0.31980000000000075, 0.8435700000000002, 1.2339599999999997], [0.0, -0.44537999999999944, -0.8423999999999976, -0.30029999999999935, -0.004679999999998907, 0.20865000000000045, 0.051480000000000414, -0.12831000000000015, 1.0104900000000003, 1.5568800000000007, 2.2834500000000015, 2.5018500000000006, 1.0845900000000008, 0.9398999999999995, 1.0260900000000008, 0.3147300000000006, -0.8521499999999989, -1.8540599999999985, -1.9238700000000029, -0.8271900000000005, -1.3127399999999996, -1.2183600000000017, -0.40872000000000086, -1.1571299999999984, -0.3572399999999982, -0.6193200000000003, -0.8747700000000027, -0.38570999999999867, -0.21567000000000025, -0.5557499999999991, -0.49335000000000107, -0.27182999999999957, -0.4820399999999998, 0.2831400000000013, -0.8111999999999975, -0.6321899999999994, -0.6778199999999999, 0.4992000000000001, 1.2105600000000005, 0.4360200000000001, 1.0795200000000007, 0.42978000000000094, 0.6509100000000012, 0.8420100000000006, 0.9332700000000007, 0.26091000000000064, -0.4247099999999977, -0.6750899999999989, -1.1551799999999977, -1.5639000000000014, -1.4671799999999993, -1.0678199999999973, -1.1894999999999987, -1.3010399999999975, -1.032329999999997, -0.31355999999999873, -0.22229999999999994, 0.11505000000000098, -0.007800000000000029, -0.3092699999999995, -1.185209999999998, -0.5736899999999985, -0.13220999999999838, -0.29249999999999843, -0.19226999999999994, -0.4387499999999991, -0.8303099999999983, -0.11348999999999965, 0.24881999999999893, -0.5604299999999982, 0.17199000000000075, 0.29757000000000033, 1.1501100000000004, 0.9898200000000001, 0.8369400000000007, -0.6228299999999984, -1.5623399999999992, -1.9519499999999954, -1.3217100000000033, -0.6119099999999984, 0.09984000000000082, -0.02456999999999976], [0.0, -0.9223500000000002, -0.730080000000001, -0.3525600000000002, -0.28430999999999995, -0.4535699999999998, -0.18759000000000015, -0.16302000000000094, -0.5651099999999996, 1.2815399999999975, 1.5077400000000023, 1.97418, 1.5155399999999966, 1.111110000000001, 1.07211, 0.08267999999999975, -1.3595399999999995, -1.2628199999999998, -0.7238399999999998, -1.2452699999999997, -1.5993899999999994, -1.2518999999999996, -1.536600000000001, -1.6333199999999992, -0.2655899999999999, 0.7655699999999986, 1.0140000000000011, -0.22776000000000063, -0.33578999999999914, -0.84357, -1.08303, -0.7651799999999996, -0.5643300000000002, -0.4949099999999997, -0.5190899999999999, -0.95784, 0.14039999999999886, 0.41690999999999845, 1.5346500000000014, 0.5674499999999999, 0.34475999999999984, -0.8264100000000001, -0.10880999999999974, 0.27066, 0.23750999999999978, 0.07605000000000028, -0.9629099999999997, -1.1731199999999997, -0.7172099999999999, -0.6236099999999998, -0.3623099999999996, -1.3384800000000001, 0.3903899999999997, 0.22190999999999927, -0.41964, -0.5342999999999996, 0.09594000000000047, -0.55107, -1.5755999999999992, -1.4496300000000004, -0.6185399999999998, -0.15833999999999993, 0.3744000000000002, -0.005069999999999797, -0.16028999999999916, -0.15834000000000048, -0.7445099999999998, -0.3876600000000002, 0.4898399999999997, 1.787760000000005, 1.8372900000000008, 1.5619500000000026, 1.6594499999999988, 0.9859199999999991, 0.5475600000000008, -0.00546000000000002, -0.08892000000000055, -0.2597399999999995, -0.9656399999999999, -0.8443499999999994, -0.3416399999999985, 0.06513000000000024], [0.0, -0.4383600000000001, -0.6524700000000025, 0.026129999999995768, 0.38415000000000177, 0.10607999999999951, -0.0702000000000016, -0.8728200000000021, -0.4980300000000031, 0.15366000000000035, 0.9110400000000007, 1.3712399999999993, 1.245659999999999, 0.7604999999999982, 0.8708700000000014, -0.04017000000000026, -1.6762200000000018, -1.8119400000000012, -1.870050000000002, -1.9320600000000017, -1.9203600000000018, -1.9367400000000012, -0.2917200000000051, -1.0904400000000012, -1.0826400000000016, 0.2211299999999996, 0.011699999999994937, -0.6267299999999998, -1.156350000000002, -1.769040000000002, -1.260090000000001, -0.7222800000000007, 0.006629999999998137, -0.1368900000000033, -0.07761000000000484, -0.5463900000000019, -0.16185000000000116, -0.03900000000000459, 0.5970899999999997, 0.4036499999999994, 0.7371000000000021, -0.09399000000000024, -0.3627000000000009, -0.5319600000000007, -0.3658200000000027, -0.5545800000000007, -1.7717700000000016, -2.058030000000001, -1.7526600000000014, -1.2359100000000003, -0.8923199999999998, -0.9434100000000016, -0.5194800000000015, -1.3127400000000011, -1.1052600000000012, -1.3240500000000013, -1.556100000000001, -1.1286600000000024, -0.6719700000000017, -0.25428000000000006, -0.331500000000001, 0.5393700000000008, 0.9734399999999979, -0.10958999999999941, 0.021059999999997636, -0.05733000000000121, -0.3942900000000016, -0.2655900000000031, 0.6427200000000006, 0.003899999999998016, -0.019890000000001518, 0.2261999999999964, 0.38415000000000044, 0.5791499999999994, 0.4871099999999968, 0.1427399999999981, -1.4543100000000009, -0.2866500000000016, -1.0050300000000025, -0.6247800000000012, 0.06902999999999837, 0.5007600000000005], [0.0, -0.40559999999999996, -0.16848000000000002, 0.2796300000000002, -0.4793100000000014, 0.23087999999999936, -0.9925500000000007, -1.2713999999999999, -1.9028100000000001, -0.015990000000000615, 0.6750899999999995, 0.5729099999999996, 0.8131499999999992, -0.25194000000000144, 0.7542599999999993, 0.4523999999999993, -0.07488000000000078, -1.5167100000000011, -1.7448600000000012, -1.37124, -1.793610000000001, -1.8369000000000006, -1.3926900000000009, -1.3236600000000005, -0.09516000000000124, 0.49256999999999945, -0.0062400000000008005, -1.1883300000000006, -1.5342600000000008, -1.5334800000000013, -1.704690000000001, -2.26395, -2.0853300000000004, -1.4410500000000002, -1.4426100000000004, -0.7612800000000008, -0.49803000000000075, -0.09906000000000076, 0.14936999999999895, -0.12987000000000054, -2.3567699999999996, -1.928160000000001, -0.4855500000000006, -1.232010000000001, -1.4742000000000008, -1.3162499999999995, -1.6422900000000007, -0.683280000000001, -0.15015000000000073, 0.648179999999998, 0.48087000000000063, 0.3174599999999986, -0.34203000000000094, -0.9391200000000004, -0.8478600000000007, -0.41535000000000055, -0.3697200000000013, -0.7995000000000008, -0.8638500000000007, -0.68367, -1.0190699999999997, -0.12714000000000117, 0.20982000000000006, 0.6442799999999993, -0.15483000000000058, -1.0428600000000008, -0.8439600000000009, -0.5206500000000014, 0.010139999999998817, 0.5970900000000001, 0.93834, 0.6154199999999996, 0.8318699999999988, 0.5538000000000005, 0.9317099999999998, -0.0015600000000003944, -2.318940000000005, -1.5611700000000013, -1.7534400000000008, -1.7440800000000012, -1.2402000000000009, 0.722669999999999], [0.0, -0.9843600000000001, 0.0003899999999981141, 1.0303799999999987, 0.6828899999999984, 0.15638999999999736, 0.11114999999999897, -1.2870000000000026, -1.1933999999999996, 0.1864199999999978, 0.04835999999999574, 0.9699299999999977, 1.169610000000001, 1.0982399999999986, 0.22191000000000294, -0.9126000000000025, -2.885610000000002, -2.534999999999999, -2.822430000000002, -1.9375200000000015, -1.5623400000000016, -1.5245100000000007, -0.4691699999999992, -0.595140000000002, -0.8977800000000031, -0.8041799999999983, -0.45786000000000104, -0.5963099999999995, -2.318549999999997, -1.8400200000000013, -0.5089500000000005, -0.9765599999999997, -0.7019999999999986, -1.0580700000000003, -1.1294400000000038, -0.021450000000003744, -0.3014699999999997, -0.5670600000000019, 0.017549999999996402, -0.04407000000000183, -1.1540100000000022, -1.4726400000000002, -2.132520000000001, -1.5880799999999993, -1.9706700000000024, -0.9831900000000009, -1.873950000000003, -0.23049000000000186, 0.6395999999999973, 0.22464000000000084, 0.6723599999999992, 0.12791999999999915, 0.5569199999999992, -1.059239999999999, -1.8415799999999982, 0.005849999999997468, 0.4141799999999993, 0.2628599999999972, 0.55185, 1.2050999999999983, 0.05927999999999933, 0.40403999999999973, 0.25076999999999794, -0.28665000000000074, -0.28158000000000216, -0.4239300000000026, -0.13611000000000262, 0.4465499999999991, 0.4130099999999983, 1.1805299999999987, 0.6068399999999994, 0.8771099999999987, 0.42588000000000026, -0.7589400000000026, -1.044810000000001, -1.2273300000000016, -1.8135, -1.6520400000000026, -2.245620000000002, -1.477320000000002, -1.35954, -0.35139000000000253], [0.0, -1.1789700000000036, -1.233180000000004, -0.35607000000000655, -0.12168000000000356, -0.6723600000000043, -1.2850500000000031, -1.8103800000000034, -2.125110000000006, -1.3209300000000002, -0.7004399999999991, -0.05186999999999786, 0.15365999999999236, -0.25584000000000406, -1.1844300000000056, -1.5291900000000038, -2.6925600000000016, -2.846610000000004, -2.2596599999999962, -1.3544700000000032, -1.3248300000000008, -1.2487800000000013, -2.17581, -1.3798200000000054, -0.6173700000000015, -0.3779100000000022, -0.6786000000000052, -0.9313200000000053, -2.5295400000000057, -3.010020000000004, -2.2873499999999978, -1.8099900000000022, -2.0135699999999948, -1.870049999999995, -1.1364600000000098, -0.7074600000000069, -0.6715800000000036, -1.1918399999999987, -0.6587100000000015, -0.7495800000000066, -2.2932000000000037, -1.31352, -1.0518300000000038, -1.1013600000000037, -1.5705300000000002, -2.8274999999999992, -3.407430000000003, -2.307239999999997, -1.999529999999996, -0.8385000000000029, 0.35255999999999554, 0.028860000000001218, -0.027690000000002435, -1.0280400000000003, -1.8380699999999996, -3.0993300000000032, -2.815799999999997, -2.2436700000000056, -1.4589900000000022, -0.7581600000000059, -1.4566500000000047, -1.3369200000000006, -0.21138000000000146, -1.0405200000000074, -1.5728700000000075, -1.3111800000000051, -1.1130600000000022, -1.0015200000000024, -0.3767400000000021, -0.757770000000002, -0.7924800000000061, -1.3969800000000023, -0.8603400000000048, -0.8654100000000029, -0.7983300000000031, -0.9999600000000037, -1.6497000000000015, -2.118869999999998, -3.1266300000000053, -2.468700000000005, -1.6044600000000027, -0.39468000000000236], [0.0, -0.574080000000003, 0.5007599999999961, 1.1575199999999999, 0.9882599999999977, 1.9811999999999905, 1.2940199999999935, -0.2593499999999995, -0.7328100000000033, -0.8439600000000005, -0.510900000000003, -0.2577900000000044, 0.9055799999999872, 0.9289799999999984, 1.1239799999999915, 0.034319999999996575, -1.0884900000000033, -2.7409200000000067, -2.0365800000000007, -1.0030800000000082, -0.2858700000000045, -0.6786000000000021, -0.5744700000000051, -0.47970000000000734, -0.356460000000002, 0.03899999999999171, 0.2815799999999955, -0.4832099999999988, -0.2562299999999995, -0.44421000000000443, -1.3482300000000036, -0.5577000000000005, -0.6033300000000015, -0.6610500000000048, -0.13923000000000663, -0.5612100000000044, -0.7484099999999989, -1.3053300000000054, -0.7078500000000041, 0.30419999999999714, 0.28040999999998917, -0.503880000000005, -1.1165700000000047, -0.9204000000000012, -0.055770000000005204, -0.10257000000000449, -0.5978700000000057, -0.28781999999999996, 0.320189999999994, 0.9656399999999943, 1.872389999999995, 1.7959499999999968, 1.389179999999997, 1.464450000000002, -0.08580000000000254, -0.5768100000000009, -0.8720400000000001, -0.7172100000000041, 0.6314099999999927, 1.2004199999999958, 0.5374199999999973, 0.07058999999999571, -0.07877999999999918, 0.206699999999997, 0.4149599999999918, 0.20357999999999876, -0.12558000000000558, -0.30615000000000414, 0.4297799999999894, -0.2535000000000034, 0.051089999999994085, -0.47814000000000245, -0.4254900000000017, -1.0814700000000035, -0.6801600000000043, -0.4875000000000016, -1.211339999999999, 0.10958999999999719, -0.48243000000000347, -1.496430000000005, -2.078310000000005, -1.769039999999999], [0.0, -0.4711199999999991, -0.5233799999999995, 0.24531000000000236, 0.48594000000000204, 1.428570000000002, 0.46020000000000216, -0.7862400000000007, -2.36886, -2.804489999999998, -1.8848699999999963, -0.808470000000002, -0.48632999999999926, -1.5892499999999967, -1.2538500000000021, -1.8158399999999997, -2.212079999999999, -3.5567999999999995, -3.492839999999997, -2.5712699999999953, -2.433209999999993, -1.6337099999999989, -2.7662699999999982, -3.117269999999999, -2.5170600000000003, -1.4917500000000032, -0.5838299999999998, -1.3256100000000002, -0.662999999999998, -0.8938799999999971, -1.5689699999999989, -1.6567199999999973, -1.505399999999999, -1.602509999999997, -2.287739999999998, -2.136419999999997, -3.283020000000002, -2.0046000000000035, -1.5989999999999998, -0.9332700000000029, -1.9406400000000006, -1.9336200000000003, -1.425839999999996, -1.8275400000000017, -1.689479999999997, -2.4811800000000024, -2.770169999999999, -2.448029999999999, -1.0526099999999992, -0.6797699999999995, 0.24960000000000182, 0.027300000000003433, 0.13377000000000017, 0.05850000000000222, -0.6645599999999949, -1.687919999999996, -1.9320599999999972, -1.8291000000000004, -1.1364599999999974, -1.2101700000000029, -0.33930000000000016, -0.7605000000000017, 0.08268000000000164, -0.0062400000000009115, -0.8287499999999968, -1.4695199999999988, -1.6454099999999947, -1.460939999999996, -1.6407299999999987, -0.6696299999999997, -0.35412000000000043, -0.5346899999999959, -1.0830299999999977, -2.04477, -1.309619999999999, -1.1840399999999982, -1.020239999999999, -1.0958999999999972, -1.05261, -1.6251299999999982, -2.7955199999999993, -3.3797399999999986], [0.0, -1.1079900000000018, -1.3938600000000017, -0.5682300000000016, 0.014819999999998279, 0.5861699999999999, 0.503879999999999, -0.7285200000000008, -1.4827800000000009, -1.787370000000001, -0.9465300000000014, -0.3502200000000011, -1.3638300000000025, -1.3704600000000027, -0.5982600000000012, -0.5436600000000016, -2.444130000000001, -3.4975200000000015, -2.9351400000000014, -2.9682900000000005, -1.4500200000000014, -1.4133600000000022, -1.063140000000002, -0.530400000000003, -0.3759600000000015, 0.011699999999998045, 0.18524999999999858, -0.1388400000000014, 0.381029999999998, -1.318200000000001, -2.035410000000002, -2.0475000000000017, -2.5506000000000024, -3.1535400000000036, -1.500330000000002, -0.7199400000000014, -1.4008800000000006, -1.5011100000000017, -1.204710000000001, -0.4290000000000016, -0.10725000000000151, -0.8759400000000012, -1.9613100000000019, -2.056470000000001, -1.8447000000000013, -1.5717000000000017, -1.1091600000000013, -0.22269000000000216, -0.23283000000000098, 0.736319999999997, 1.010879999999999, 1.4539199999999988, 0.24218999999999813, 0.43952999999999864, -0.4539600000000015, -0.44187000000000276, -1.798290000000001, -0.8595600000000023, -0.20982000000000134, 0.5116799999999986, 0.48281999999999803, -0.741000000000001, -0.13026000000000204, -0.6142500000000015, -0.8112000000000013, -1.3482300000000011, -1.4168700000000007, -1.242930000000002, -0.8529300000000012, -0.9792900000000012, 0.0019499999999960105, 0.5108999999999986, 0.09243000000000068, -0.08151000000000153, -0.8743800000000017, -1.638390000000002, -1.9191900000000015, -1.6192800000000016, -2.1668400000000014, -2.3801700000000032, -2.168010000000002, -2.379780000000001], [0.0, -0.24414000000000008, -0.2913299999999989, 0.26831999999999906, -0.4137899999999999, -0.051869999999999805, 0.4504500000000005, -0.5003699999999999, -1.6181099999999997, -2.2506899999999996, -1.5264600000000017, -1.2885600000000008, -0.8864699999999996, -0.3506100000000001, -0.5307899999999995, -1.639950000000001, -2.2503000000000006, -3.163289999999998, -3.1784999999999997, -3.2116499999999992, -2.3060700000000005, -1.3868399999999999, -2.673059999999998, -2.378610000000001, -1.5783299999999991, -0.3681599999999997, -0.3919499999999997, -0.9449700000000001, -0.8646299999999991, -0.6801599999999985, -1.7382299999999988, -1.3653899999999988, -1.7990700000000002, -2.1036600000000005, -0.9956699999999996, -2.0966399999999994, -2.3263499999999993, -2.3290799999999994, -1.748369999999999, -1.2441000000000002, -0.3537299999999998, -1.0939500000000002, -1.6044599999999996, -1.0635300000000008, -0.8759399999999993, -0.8439600000000005, -0.8338199999999996, -0.8018399999999999, -0.4785299999999998, 0.03159000000000006, 0.9164999999999996, 1.3104000000000005, 0.3143400000000007, -0.5717399999999999, -1.9683299999999995, -2.2194900000000017, -1.7639700000000014, -1.0385700000000007, -0.3681599999999997, -0.5257200000000002, -0.5428799999999991, -0.8876399999999991, -0.0873599999999993, 0.022619999999999918, -0.7577699999999998, -1.0346699999999998, -1.1380199999999996, -1.1571300000000002, -1.5795000000000008, -0.7924800000000001, -0.5062199999999999, -0.9566699999999997, -1.3454999999999997, -1.9909500000000018, -2.079480000000002, -2.400840000000001, -1.7706000000000008, -1.6149900000000026, -1.0919999999999996, -2.5619099999999975, -2.5580099999999995, -2.571269999999999], [0.0, 0.39780000000000304, 0.3822000000000023, 0.5339100000000017, -0.06707999999999936, 0.6871800000000012, 0.18681000000000303, -0.5580899999999973, -0.3026399999999989, -0.32877, -0.6083999999999996, -0.8084699999999998, -0.7889700000000022, 0.11660999999999921, -0.05771999999999666, -0.06629999999999825, -1.1590799999999977, -1.7491499999999993, -2.0396999999999985, -2.2319699999999956, -1.0662599999999967, -1.4636699999999978, -0.1786200000000009, 0.44577000000000133, 1.0405200000000017, 0.9691500000000015, -0.23087999999999598, 0.5358600000000016, 0.06668999999999947, -1.0073699999999999, -1.861859999999997, -1.9507800000000004, -1.8415799999999947, -2.1648899999999967, -0.5924099999999997, -1.1060399999999948, -1.0280400000000007, -1.1536199999999974, -0.8525399999999963, -0.5066099999999985, -0.2421899999999999, 0.07527000000000195, -0.7948199999999987, -0.7569899999999987, -0.7031700000000001, -0.6060599999999994, 0.004290000000001015, 0.6189300000000006, 0.3377400000000006, 1.278810000000001, 1.6504800000000022, 2.116530000000002, 1.131390000000002, 0.3892200000000021, -0.36932999999999705, -0.7195499999999999, -0.02886000000000033, -0.3580199999999998, 0.810420000000001, 1.1949600000000014, 0.5307900000000005, 0.5729100000000007, -0.023789999999997313, 0.035100000000001685, 0.1653600000000024, -0.04679999999999751, -0.9453599999999995, -1.1017499999999982, -0.7468499999999993, 0.6263400000000026, 1.1388000000000016, 0.2285400000000024, 0.3311100000000011, -0.1271399999999967, -0.9079199999999945, -1.181699999999994, -1.6625699999999988, -1.1403600000000003, -0.7402200000000012, -1.9211400000000016, -1.7175600000000024, -1.48902], [0.0, 0.24024000000000156, 0.3642600000000027, 0.7066800000000011, -0.18875999999999804, -0.4122299999999961, 0.37908000000000186, -0.2878199999999995, -0.19344000000000028, -0.9738300000000013, -0.8318700000000021, 0.1294799999999976, -0.7304699999999982, -1.2413699999999963, -0.38609999999999944, -0.28937999999999775, -0.8303099999999999, -1.476150000000001, -2.508480000000001, -2.0732400000000006, -1.8107699999999944, -1.0268699999999993, -0.664949999999997, 0.17394000000000087, 1.0296000000000018, 0.8287500000000019, 0.5604300000000018, 0.13689000000000195, 0.18798000000000226, -1.3716300000000006, -0.9102600000000001, -0.8310899999999992, -1.5970500000000007, -0.831090000000001, -0.6306299999999996, -0.8466899999999984, -1.5713100000000004, -1.4305200000000022, -0.7850700000000037, -0.2648099999999953, -0.0959399999999988, -0.6275099999999973, -0.7714199999999991, -0.326429999999998, -0.6294599999999995, 0.18681000000000236, -0.017159999999998954, 1.3022100000000023, 0.742950000000002, 0.8771100000000025, 1.5600000000000023, 2.464800000000002, 0.4820400000000018, 0.7464600000000021, -0.07331999999999672, -0.10958999999999808, -0.08696999999999999, 0.4141800000000022, 0.2628600000000014, 0.37713000000000174, -0.2963999999999998, -0.7331999999999996, -0.8517599999999974, -0.3864899999999971, 0.2632500000000022, 0.02496000000000098, -1.1871599999999995, -0.7133100000000003, -0.37829999999999675, 0.25818000000000185, 1.2019800000000014, 0.8010600000000021, 0.24999000000000104, -0.4835999999999969, -1.4203799999999989, -1.6777800000000007, -1.61265, -1.1017500000000005, -0.05849999999999844, 0.3326700000000018, -0.824849999999997, -0.449279999999999], [0.0, -0.011309999999999765, 0.7690800000000004, 0.4368, 0.20786999999999886, 0.14039999999999941, 0.3186300000000009, 0.008579999999999977, -0.38609999999999983, 0.17939999999999984, 0.1021800000000004, -0.031200000000001005, 0.7897499999999993, 0.45435000000000003, 0.3662099999999996, -0.1844699999999999, -0.42900000000000044, -0.32292000000000026, -0.7917000000000005, -0.2679300000000003, -0.6474000000000002, -0.538590000000001, 0.7667399999999995, 1.0354500000000002, 0.36972000000000005, 0.4477199999999998, -0.6665100000000006, -0.8724300000000007, -1.235520000000001, -1.5206100000000018, -1.7347200000000014, -2.103660000000002, -2.0381399999999967, -1.8107700000000022, -1.310010000000001, -0.986700000000001, -1.3525200000000004, -0.8455199999999992, -0.3162900000000007, -0.14507999999999943, -0.7913100000000002, -0.5600399999999996, -1.1306099999999994, -0.17082000000000014, -0.22035000000000005, -0.4219800000000003, -0.21411000000000013, 0.5222099999999993, 0.8252399999999995, 2.140320000000001, 2.666039999999999, 2.030339999999999, 1.3228799999999998, 0.2698799999999998, 0.18992999999999916, -0.7846799999999992, -0.8108100000000025, -0.6977100000000007, -0.41651999999999995, 0.34124999999999994, 0.1212899999999999, 0.09398999999999996, 0.9640799999999996, 1.0155599999999991, 0.21995999999999966, -0.6661200000000005, -1.0108800000000009, -0.7086299999999999, 0.26831999999999967, 0.8049600000000001, 1.0007400000000002, -0.2944499999999998, -0.31122000000000033, -0.45317999999999986, -0.9668100000000008, -1.6407300000000005, -1.2101700000000015, -0.2336099999999996, 0.21644999999999984, -0.12987000000000126, 0.20474999999999996, -0.9176700000000013], [0.0, -0.0023399999999976773, 0.6903000000000011, 0.24453000000000202, 0.4524000000000018, 0.609180000000002, 1.0284300000000022, 0.3533400000000023, -0.22541999999999762, -0.08384999999999865, -0.7023900000000014, -0.4906199999999967, -0.16379999999999972, -0.042509999999998715, 0.3545100000000012, 0.5335200000000017, -0.636869999999998, -1.349789999999998, -1.3427699999999982, -0.8852999999999984, -0.2780699999999974, 0.1361100000000015, 0.3272100000000018, 0.9711000000000019, 1.7249700000000021, 1.2971400000000024, 0.363090000000002, 0.561210000000002, 1.5213900000000016, 0.4243200000000019, -0.18329999999999969, -0.3572399999999978, -0.088529999999998, -0.4640999999999995, 0.3654300000000024, -0.2421899999999969, -0.8810099999999987, -0.21488999999999803, -0.5116800000000001, -0.20630999999999822, 0.6879600000000019, 1.2483900000000017, 0.01677000000000195, 0.8435700000000015, 1.1204700000000014, 0.7117500000000009, 0.7355400000000021, 1.395030000000002, 1.3497900000000027, 2.428919999999999, 2.6773500000000023, 3.7662300000000055, 2.8419299999999996, 2.218710000000001, 1.7191200000000009, 1.308450000000002, 1.5759900000000022, 1.5373800000000017, 1.0658700000000016, 1.2616500000000017, 1.566240000000004, 1.6524300000000038, 1.3544700000000018, 0.7269600000000015, 0.11310000000000175, -0.7441199999999983, -0.6419399999999988, -0.6696299999999984, -0.04445999999999872, 1.0377900000000015, 1.5674100000000022, 1.3494000000000015, 0.5612100000000015, 0.40872000000000164, 0.19110000000000193, -0.6602699999999977, 0.15990000000000137, 0.42588000000000154, 1.2175800000000017, 0.6068400000000017, 0.5928000000000018, -0.4785299999999988], [0.0, 0.4843800000000029, 1.2433199999999984, 1.4742000000000037, 1.7916599999999945, 1.096290000000001, 1.5393299999999939, 1.036619999999997, 0.4219800000000009, 0.9438, 0.922350000000002, 1.1130600000000057, 1.5252899999999987, 0.7382700000000004, 0.21762000000000015, 0.15015000000000045, 0.21255000000000335, 0.44615999999999323, 0.18252000000000113, 0.35022000000000597, 0.8521499999999995, 0.7406100000000051, 1.8150599999999986, 1.9312800000000014, 1.9601400000000013, 1.7456400000000012, -0.29757000000000033, -0.3151200000000003, -0.48788999999999616, -0.20981999999999568, -1.0276499999999955, -1.037399999999998, -0.9640799999999974, -0.8700899999999994, -0.2893799999999991, -0.2823600000000015, -0.7952100000000004, -0.4446000000000008, 0.25466999999999773, 0.5389800000000045, 0.6610500000000026, 1.3182000000000023, -0.1493700000000011, 0.3923400000000057, 0.6848400000000034, 0.035490000000001576, 0.11933999999999845, 0.9983999999999988, 1.0959000000000034, 2.0108400000000013, 2.1208200000000015, 2.1945299999999954, 2.512379999999999, 1.828319999999994, 1.8482100000000004, -0.27143999999999924, 0.57213, 0.5159699999999989, 0.11622000000000376, 0.39156000000000146, 1.2355200000000024, 1.7904899999999988, 1.4414400000000023, 0.861899999999999, 0.5081700000000011, 0.7172100000000028, 0.7008300000000021, -0.23517000000000143, 1.0958999999999954, 1.8115500000000053, 1.0834200000000025, 0.6333600000000028, 0.04368000000000061, 0.6076199999999967, 0.4621500000000025, 1.051049999999997, 0.9438000000000053, 1.2515100000000037, 1.0448100000000022, 1.5393300000000036, 0.9484800000000022, 0.5249400000000031], [0.0, -0.31862999999999864, 0.22190999999999406, 0.682500000000001, 0.5237699999999976, -0.25740000000000185, -0.17550000000000066, -1.7101500000000018, -1.9082700000000015, -2.29359, -2.2787700000000024, -2.8844400000000023, -1.4816100000000023, -0.7644000000000014, 0.13025999999999827, -0.3221400000000012, -0.6708000000000013, -0.4953000000000032, -0.6466200000000021, -0.4547400000000026, 0.2503799999999985, -0.6836700000000009, -0.2808000000000015, -0.9519900000000013, -0.6630000000000017, -0.3837600000000023, -0.16146000000000105, -0.06669000000000236, -0.6778200000000021, -2.015910000000002, -2.4858600000000006, -1.8755100000000018, -2.169180000000002, -1.9636500000000008, -2.0280000000000005, -1.5401100000000012, -1.868880000000002, -2.162160000000001, -3.3060300000000016, -2.867280000000002, -1.2675000000000018, -0.5846100000000013, -1.107600000000002, -1.4695200000000013, -1.2218700000000018, -1.1590800000000023, -1.3529100000000014, -1.350960000000001, -0.20202000000000186, 0.7000499999999992, 1.0670399999999995, 1.886039999999999, 1.3798199999999974, 0.1392299999999984, -0.44421000000000155, -1.006200000000002, -0.8700900000000014, -0.07878000000000074, -0.4106700000000014, -0.04641000000000517, 0.7265699999999993, -0.4410900000000011, -0.090480000000001, -0.9020700000000007, -0.7254000000000018, -0.9601800000000015, -0.8096400000000005, -0.3478800000000022, 0.3447599999999986, 0.576419999999997, 0.4102799999999982, -0.6676800000000014, -1.6391700000000013, -1.5155400000000019, -1.604460000000001, -0.8338200000000018, -0.5658900000000022, 0.29132999999999787, 0.6115199999999992, 0.5791499999999967, 0.8303099999999972, -0.4005300000000023], [0.0, -0.3084900000000017, -0.469170000000003, -0.6325800000000037, 0.23399999999999732, -0.08463000000000243, -1.1434800000000023, -1.0923900000000017, -0.4726800000000049, -0.6516900000000032, -1.5927600000000028, -0.9340500000000009, -1.5631200000000023, -1.372800000000003, -0.7398300000000018, -1.1204700000000027, -1.1200800000000029, -1.0514400000000033, -1.2413700000000039, -2.006940000000003, -1.6341000000000037, -0.6481800000000035, -0.6899100000000027, -0.537030000000003, -0.21567000000000203, 0.08891999999999678, -1.1079900000000023, -2.204280000000003, -2.640300000000003, -2.7623700000000024, -1.9652100000000023, -2.577510000000003, -2.561910000000003, -1.7643600000000035, -1.690260000000003, -1.2838800000000044, -1.4461200000000038, -0.8201700000000021, -0.6232200000000043, -0.1719899999999983, -0.49491000000000174, 0.39116999999999535, 0.2796299999999974, -0.7952100000000026, -1.6586700000000036, -2.071680000000004, -2.0549100000000022, -1.0892700000000022, -1.2109500000000029, 0.22892999999999697, 0.8708700000000027, 1.10526, 0.03353999999999813, -0.327210000000004, -0.8127600000000024, -1.8883800000000026, -1.6352700000000027, -1.241370000000002, -1.0775700000000021, -0.6626100000000024, -0.060060000000006664, 0.5647199999999937, 0.6037199999999978, 0.7476299999999956, -0.08073000000000352, -0.5229900000000025, -0.8420100000000026, -1.8532800000000034, -1.4157000000000026, 0.19694999999999707, -0.9976200000000011, -0.7569900000000029, -0.16107000000000005, -0.7172100000000035, 0.14780999999999755, -0.4266600000000027, -0.3954600000000026, -1.0853700000000035, -0.8303100000000028, -0.241410000000001, -0.8677500000000025, -0.2125500000000029], [0.0, -0.12362999999999857, 0.21021000000000045, 0.48399000000000103, 1.842360000000001, 1.5557100000000008, 0.6945900000000009, 0.326040000000001, -0.020669999999999078, 1.4492400000000005, 1.2503400000000005, 0.5900700000000023, -0.840839999999996, 0.23907000000000034, 0.6282900000000007, 1.2191400000000012, 0.38922000000000123, 0.4251000000000009, 1.5182700000000005, 2.027610000000001, 2.1360300000000008, 1.654380000000001, 2.3142600000000004, 1.4972100000000017, 1.3373100000000009, 0.4188600000000007, -0.4570800000000008, 0.013259999999999383, 0.042119999999998825, 0.19305000000000372, -1.7538299999999998, -1.8135000000000034, -1.2335700000000012, -0.5787600000000004, 0.1583399999999986, -0.16574999999999918, 0.63453, 0.013650000000002382, -0.7429499999999978, -0.9250799999999981, -0.47346000000000066, 0.6302400000000017, 0.5779800000000013, 1.114230000000001, 0.34944000000000064, 0.20942999999999978, 0.4878900000000004, 0.8942700000000008, 1.1040900000000002, 2.0069400000000006, 3.0310800000000007, 2.421900000000001, 1.506180000000002, 0.3467100000000032, 0.3260400000000001, 0.03041999999999989, -0.13221000000000194, 0.5471700000000008, 0.4352399999999992, 0.6477900000000014, 1.1820900000000003, 0.8533200000000007, 0.8950500000000008, 1.1337300000000008, 0.69225, 0.7866300000000006, 0.5896800000000011, 0.39077999999999835, 0.9285900000000016, 1.0479299999999991, 1.1598600000000006, 1.24527, 1.1945700000000008, 0.9535500000000008, 1.3271700000000002, 0.9399000000000002, 1.313520000000001, 2.1855600000000006, 1.3505700000000023, 1.7647500000000003, 2.043990000000001, 1.9390800000000008], [0.0, -0.5686200000000015, -0.6579300000000039, 0.16106999999999605, 1.5564900000000002, 2.738189999999995, 2.3419499999999935, 1.9242599999999976, 1.7023499999999938, 1.350959999999998, 1.6703699999999984, 1.1294399999999971, 0.5253299999999959, 1.0007399999999986, 1.6746599999999976, 2.102099999999994, 1.9886099999999933, 2.0689499999999947, 1.7331599999999971, 1.252289999999995, 1.462109999999993, 1.6348799999999999, 1.699229999999992, 2.936699999999991, 3.0400499999999946, 3.2346599999999954, 3.096599999999997, 2.6765699999999946, 2.387579999999997, 1.715220000000003, 1.8142799999999957, 2.0354099999999944, 2.888729999999998, 3.1004999999999994, 2.1126299999999993, 2.6200199999999967, 2.654729999999992, 2.402399999999994, 1.5007199999999985, 0.42977999999999783, 0.7203299999999975, 0.7550400000000028, 1.078739999999999, 2.162159999999994, 2.9066699999999965, 3.023669999999999, 3.1246799999999926, 2.8637699999999997, 2.7619799999999914, 2.538509999999998, 2.2073999999999927, 2.368859999999996, 2.259269999999993, 3.8333099999999902, 3.5400299999999953, 3.9124799999999906, 3.098549999999996, 2.5697099999999997, 2.011229999999996, 0.7624499999999999, 0.9987900000000005, 0.8669699999999976, 2.0829899999999926, 2.6921699999999946, 2.936309999999998, 2.5108199999999927, 2.250689999999997, 1.9554599999999907, 2.7643200000000006, 2.4304799999999966, 2.596229999999995, 2.701139999999989, 1.9917299999999916, 2.330639999999992, 2.624309999999996, 2.816969999999994, 1.8333899999999987, 1.278419999999998, 0.8189999999999991, 0.4621499999999963, 0.23906999999999634, 0.22463999999999684], [0.0, 1.177410000000001, 2.0326800000000045, 2.9718000000000035, 2.7709500000000036, 1.7292600000000062, 1.2468300000000037, 0.16848000000000418, 1.0362299999999989, 1.5678, 1.8626400000000043, 1.230059999999999, 0.9328800000000008, 1.0159500000000037, 0.2936700000000023, 1.570140000000003, 1.9145100000000017, 0.5179200000000037, 1.139580000000005, 1.3018200000000002, 1.6547700000000054, 1.9390800000000077, 1.6161600000000007, 1.2955800000000028, 1.6496999999999984, 0.6279000000000021, 0.895830000000001, 0.7359300000000024, 0.6033300000000059, 0.20046000000000097, 0.16926000000000663, 0.929370000000004, 1.1797500000000056, 1.4484600000000007, 0.8232900000000045, 0.793260000000001, 0.5405400000000018, 0.8307000000000038, 0.49023000000000394, 0.6454500000000047, 1.2893400000000037, 1.4550900000000047, 0.8958299999999983, 1.1618100000000062, 0.9535500000000052, 0.4531800000000019, 1.8170100000000007, 2.740529999999997, 2.9823299999999975, 3.5330100000000044, 4.206539999999995, 3.751019999999997, 3.143399999999999, 0.6540299999999997, 0.22503000000000428, 0.5838300000000043, 0.10881000000000407, 0.9492600000000015, 1.5986100000000008, 2.8501200000000093, 2.747939999999997, 2.1071699999999973, 2.0233199999999982, 1.742130000000004, 1.5143700000000004, 1.6052400000000029, 1.8084300000000022, 1.723799999999998, 1.7136600000000017, 0.8552700000000053, 1.2378600000000057, 0.5214300000000041, 0.9297600000000044, 1.3950300000000055, 1.7666999999999984, 1.5771599999999957, 0.9633000000000029, 1.4336400000000014, 2.5233000000000034, 2.356770000000001, 2.6453700000000016, 2.573220000000002], [0.0, 0.3517800000000024, 0.29757000000000167, 1.2862199999999993, 1.0409099999999984, 0.49257000000000417, 0.7952100000000049, 1.205490000000005, 0.6719700000000022, 0.40989000000000253, -0.0007799999999982266, -0.5264999999999973, 0.20163000000000286, -0.46682999999999897, -0.028859999999998776, -0.1864199999999978, 0.027300000000000768, 0.7792200000000031, 1.2714000000000047, 0.2028000000000021, -0.518699999999997, -0.8591699999999978, -1.4082899999999983, -1.2710099999999978, -0.38921999999999723, -0.43991999999999765, -1.4940899999999984, -1.6805099999999977, -1.9371299999999976, -2.306849999999997, -1.7397899999999977, -2.4616799999999976, -1.956239999999998, -0.4122299999999983, 0.12402000000000246, -0.1240199999999998, 0.1435200000000041, 0.9270300000000029, 0.47073000000000276, 0.6793800000000028, 0.6224400000000028, 1.0522200000000024, 1.1645400000000041, 0.052650000000003416, -0.8026199999999974, -0.4539599999999995, -0.5978699999999975, -0.8568299999999966, -0.3650399999999967, 0.7211100000000021, 0.6610500000000017, -0.40130999999999784, -0.20825999999999767, -1.6789499999999982, -1.4273999999999973, -0.8938799999999982, -0.20279999999999898, -0.7429499999999976, -0.5627699999999975, -0.929759999999997, -0.6746999999999979, -0.3264299999999989, 0.15600000000000325, -0.18758999999999837, 0.34008000000000305, -0.05693999999999666, 0.3018600000000027, -0.005459999999996246, -0.8135399999999977, -0.9281999999999974, -0.11699999999999822, 0.5690100000000013, 1.1356800000000025, 0.4430400000000021, -0.007799999999996476, -1.0970699999999987, -1.6532099999999974, 0.08385000000000264, -0.516359999999999, -0.3654299999999968, 0.5534100000000022, 0.7195500000000008], [0.0, 0.6239999999999979, 0.7905299999999977, 1.5280199999999966, 0.9352199999999966, 0.8568299999999955, 0.5292299999999983, 0.07800000000000029, 0.01013999999999271, -0.046800000000009945, -0.8919300000000048, -0.2702700000000018, 0.1723800000000013, 0.00077999999999534, 0.35333999999999666, 1.0019099999999947, -0.06045000000000389, 0.05108999999999675, -0.44031000000000553, -0.6173699999999975, -0.23985000000000145, 0.5600399999999963, -0.36504000000000136, -0.015209999999998836, 0.11465999999999799, -1.1742899999999965, -1.5974400000000033, -1.325610000000002, -0.5534100000000013, -0.4652700000000003, -1.5272400000000035, -0.7425600000000054, -1.0124399999999953, -1.075620000000007, -0.680940000000013, -0.625950000000004, -0.5881200000000035, -0.49803, 0.09398999999999713, -0.22074000000000193, 0.17549999999999955, 0.8482499999999962, 1.5943199999999966, 1.2971399999999966, 0.74607, -0.691080000000003, -0.19539000000000506, 1.2690599999999956, 0.7987199999999985, 1.127099999999996, 1.2979199999999969, 1.288949999999998, 0.4738499999999979, -0.34866000000000597, -1.2440999999999987, -0.4738500000000059, -0.24687000000000392, -0.15327000000000357, 0.4952999999999923, 0.7437299999999998, 0.42197999999999247, 0.02417999999999676, 0.40013999999999683, 0.6961499999999963, 0.9395099999999976, 0.3782999999999941, -0.11739000000000299, 0.5760300000000003, 0.04679999999999218, -0.18447000000000457, 1.198080000000001, 1.4047799999999966, -0.18408000000000246, 0.2441399999999989, 0.7893599999999985, 0.09164999999999424, -0.09555000000000202, 0.418079999999998, 0.8100299999999931, 0.7343700000000002, 1.351739999999999, 1.4090699999999985], [0.0, 0.6173699999999975, 1.5057900000000002, 1.478099999999995, 0.9551099999999959, 0.838499999999998, -0.09125999999999745, -0.5202600000000008, -0.36425999999999936, -0.7920900000000008, -0.6025500000000021, -1.1945699999999997, -0.49140000000000095, -0.38025000000000153, -0.34788000000000086, 0.6700199999999992, 0.6056700000000017, 1.2928499999999978, 0.8778899999999963, -0.23517000000000188, -0.49022999999999683, -0.22112999999999605, -0.6399900000000001, -0.8143199999999986, -0.13220999999999972, -0.983580000000003, -0.8821800000000004, -1.488240000000002, -1.87746, -1.4558699999999984, -1.5486900000000006, -1.3400400000000006, -1.3388700000000004, -0.8170499999999992, -0.2558399999999992, -0.8186099999999974, -0.2776800000000028, -0.5148000000000006, -0.007020000000000248, 0.13805999999999807, 0.4949100000000044, 1.0803000000000011, 0.4017000000000017, 0.3428099999999987, -0.47540999999999967, -0.9582299999999999, -0.10335000000000338, 0.09866999999999981, -0.19734000000000362, 0.26792999999999756, 0.6622199999999987, 0.42899999999999716, -0.32487000000000066, -0.5424900000000004, -0.35958000000000023, -0.9207899999999998, -0.3361799999999979, -0.8802299999999996, 0.19538999999999884, -0.23087999999999909, -0.22347000000000028, 1.1099399999999955, 0.6622200000000005, -0.22737000000000096, -0.6867900000000007, -0.416910000000001, -0.7343700000000015, -0.5108999999999986, -0.547560000000002, 0.6259499999999996, 0.7612800000000002, 0.9590100000000019, 0.5709599999999977, -0.05888999999999989, -0.05030999999999963, -0.06434999999999969, -0.47307000000000343, -1.3981499999999998, -2.5166699999999995, -0.8392800000000009, -0.6052799999999996, -0.6606599999999991], [0.0, 0.38727000000000045, 0.9831899999999991, 1.0303799999999974, 0.4215899999999997, 0.9094799999999985, 0.8646299999999996, 0.48477000000000015, 0.039389999999999814, -0.33774000000000104, -0.43407000000000173, -1.1859900000000003, -0.8771099999999998, -0.36230999999999924, -0.04211999999999971, 1.0853699999999997, 0.90246, 1.5826200000000008, 0.776880000000002, 0.7335899999999977, 0.32213999999999876, -0.18876000000000004, -0.708630000000001, 0.03159000000000001, -0.6520799999999998, -0.4664400000000002, -0.7636200000000013, -1.3388700000000002, -0.6778200000000005, -0.11895000000000033, -0.02651999999999921, -0.6006, -0.2562300000000013, 0.2129399999999999, 0.21177000000000024, -0.20397000000000065, -0.46448999999999985, 0.08501999999999899, 0.16613999999999618, 0.25661999999999874, 0.5128499999999994, 0.8299199999999991, 1.3150799999999987, 1.5736500000000007, 0.06473999999999824, -0.5947500000000017, -1.4238899999999999, -0.43718999999999975, 0.5892899999999974, 0.5058300000000018, 1.0295999999999972, 0.6641699999999995, 0.3272099999999991, 0.44732999999999734, 0.40794000000000086, 0.3069299999999968, 0.8989499999999984, 0.4434300000000002, 0.19226999999999905, -0.49569000000000063, -0.28353000000000006, 0.38063999999999787, 1.1005799999999972, 1.0050299999999992, 1.4332499999999961, 1.1349, 1.2830999999999988, 0.9215699999999996, 1.1095500000000023, 0.4137899999999983, 1.2027599999999978, 0.540150000000001, 0.38571000000000044, 0.34437000000000095, 0.7253999999999996, -0.03861000000000114, -0.9063600000000014, -0.37283999999999873, -0.15522000000000036, -0.2238600000000004, 0.783120000000002, 0.7339799999999994], [0.0, 0.262470000000004, 0.028859999999999886, 0.6228299999999933, -0.948870000000011, -0.3135600000000096, -0.30459000000001524, -0.5112900000000113, -0.5670600000000068, -0.44889000000000934, -0.24648000000000714, -0.4726800000000022, 0.09320999999999025, 0.6294599999999893, 1.0826399999999925, 0.753089999999986, 0.35996999999999346, 0.3942899999999856, 0.7983299999999982, 0.11270999999999098, 0.0035099999999914644, -0.2874300000000094, -0.6747000000000112, -0.5779800000000073, -0.1380600000000065, -0.9293700000000094, -1.1602500000000084, -1.0455900000000122, -1.551030000000007, -1.513200000000003, -0.7741500000000112, -0.2652000000000143, -0.5210400000000002, -0.0585000000000111, -0.15444000000001346, -0.7238400000000134, -0.0007800000000148799, 0.6142500000000002, 0.6228299999999862, 1.4262300000000003, 0.6965399999999953, 0.48086999999998703, 0.9071399999999947, 0.5179200000000019, -0.08072999999999375, -0.06279000000001744, -0.038220000000007914, -0.05928000000000644, -0.6641700000000101, -0.7199400000000056, -0.6021600000000076, 0.2160599999999917, -0.13728000000000407, -0.7534800000000086, -0.613470000000004, 0.11660999999998367, -0.5865599999999977, -0.9948900000000007, -0.9675900000000048, -1.7994599999999998, -1.14972000000001, -0.8498100000000077, -0.3939000000000039, -0.888420000000008, -0.5405400000000045, 0.04133999999999638, 0.06590999999998992, 0.006239999999992918, -0.7694700000000063, -0.38181000000000687, 0.017159999999996955, -0.45123000000000957, -1.1325600000000051, -1.3969800000000054, -1.0214100000000048, -1.0405200000000034, -0.5050500000000051, -1.4270100000000072, -1.4804400000000015, -0.6832800000000061, -0.14313000000001175, -0.5608200000000068], [0.0, 0.6766499999999978, 0.7764899999999986, 1.2175799999999977, 0.2983499999999957, 0.2554499999999975, 0.12518999999999503, 0.8384999999999967, 0.5147999999999944, 0.8279699999999997, 0.45746999999999893, -0.9980100000000021, -0.3974100000000038, -0.04797000000000429, 0.005459999999994913, -0.012870000000003046, 0.14468999999999577, 0.644279999999998, 0.6080099999999966, 0.2632499999999971, 0.3439799999999944, 0.42314999999999703, -0.09750000000000503, 0.1634099999999985, 0.0538199999999982, -0.0795600000000043, -0.03003000000000311, -0.45903000000000205, -0.27690000000000303, -0.20202000000000275, -0.3673800000000047, -0.4898400000000054, -0.10998000000000419, 0.030419999999997227, -0.09633000000000047, -0.14118000000000253, 0.3782999999999981, 0.9722699999999955, 1.5884699999999985, 1.3501799999999957, 1.4944799999999978, 1.2795899999999978, 1.5670199999999956, 1.1469899999999966, -0.5393700000000003, -0.8603400000000034, -0.2078700000000051, -1.2433200000000055, -1.2858300000000056, -0.6150300000000022, 0.31979999999999764, -0.008190000000006581, 0.1934399999999985, 0.20552999999999555, -1.0557300000000027, -0.9508200000000038, 0.25778999999999597, 1.019849999999996, 0.560039999999999, 0.13416000000000095, 0.062009999999995014, -0.6154200000000052, -0.6750899999999991, -0.32175000000000153, -0.7488000000000024, 0.46916999999999565, 0.7203299999999984, -0.6942000000000039, -0.42003000000000856, 0.5420999999999956, 0.08384999999999421, 0.18875999999999582, 0.8470799999999965, 0.8525399999999976, 0.7019999999999991, -0.05850000000000488, -0.5721300000000036, -0.32214000000000187, -1.0420800000000052, -0.05382000000000309, -0.41418, -0.4336800000000052], [0.0, 0.3513900000000004, 0.3810300000000041, 0.32838000000000045, 0.29210999999999754, 0.4270499999999994, 0.6996600000000007, 0.5327400000000008, 0.16536000000000062, 0.9691500000000014, 0.670409999999999, 0.31940999999999986, 0.22074000000000116, -0.026909999999999434, 0.003510000000000235, 0.40677000000000085, 0.16575000000000017, 0.518310000000001, 0.14585999999999955, 0.2566200000000004, -0.4726800000000002, -1.5490799999999996, -1.4558699999999998, -0.9636899999999993, -1.1013599999999995, -0.5241599999999993, -0.7807799999999994, -0.46292999999999945, -1.0479299999999996, -0.7390499999999998, 0.23829000000000067, -0.04952999999999985, 0.21878999999999993, 0.14118000000000042, 0.6750900000000012, 0.3159000000000015, 0.6579300000000011, 0.8849100000000011, 1.7019600000000028, 0.7168200000000021, 1.2398100000000012, 1.4094600000000033, 1.9675500000000037, 1.177799999999999, 1.1228100000000016, 0.45278999999999925, 0.38024999999999987, 0.5912400000000017, -0.5229900000000001, -0.7254, 0.5136300000000008, 0.666900000000001, 0.08423999999999998, 0.14742000000000166, 0.16848000000000063, 0.12908999999999782, -0.47930999999999935, -0.1829099999999989, -0.6899099999999997, 0.09555000000000047, -0.1439099999999981, -0.4691699999999992, 0.47541000000000067, 0.49607999999999797, 0.7714200000000014, 1.9332300000000013, 0.8396700000000002, 0.014820000000000721, -1.21602, -0.41885999999999984, 0.22347000000000106, -0.3042000000000002, -1.3634399999999998, -0.9866999999999998, -1.3166399999999991, -1.4270099999999986, -1.6489200000000008, -1.0381799999999997, -0.6926399999999995, -0.5202599999999993, -0.44537999999999983, -0.8529299999999995], [0.0, 0.6384299999999925, 0.8786699999999952, 1.5303599999999946, 1.3946399999999946, 1.5631200000000023, 2.5954499999999916, 2.580239999999999, 2.4488100000000017, 2.3544299999999962, 1.8532799999999963, 1.3556399999999957, 1.370070000000002, 1.2608699999999962, 0.7406099999999967, 1.1750699999999963, 1.1571299999999916, 1.3419899999999991, 1.1949599999999965, 0.7659599999999926, -0.8026200000000046, -1.198080000000008, -0.9207900000000038, -0.24297000000000324, 0.33578999999999315, 1.1399699999999964, 0.35879999999999956, 0.014429999999990173, -0.176280000000002, 0.498419999999995, 0.3470999999999975, 1.73862, 1.415309999999998, 1.8817500000000047, 2.1231600000000004, 1.565850000000001, 2.7580800000000023, 2.9129099999999903, 2.2105199999999945, 2.2772099999999984, 3.2416800000000014, 3.0260100000000003, 3.437849999999994, 3.088409999999995, 1.7105400000000026, 2.2768199999999963, 2.156699999999997, 1.2550199999999885, 0.543659999999992, 1.0880999999999936, 1.2682799999999945, 0.9816299999999982, 0.6454499999999976, -0.06552000000000469, 0.4953000000000012, 1.3322399999999934, 0.6930300000000011, 0.3853199999999992, 0.13337999999999717, 0.13806000000000118, 0.302640000000002, 0.4921799999999923, 0.513629999999992, 1.5252899999999983, 1.6239599999999932, 1.048709999999999, 1.1083799999999986, 0.7554299999999978, 1.1048699999999974, 1.2156300000000027, 1.219529999999998, 1.1040899999999967, 0.9040199999999983, -0.03471000000000579, -0.23049000000000852, -0.09750000000000014, -0.23790000000000866, 1.0908299999999977, 0.9707100000000004, 1.888379999999998, 1.70742, 0.6247800000000012], [0.0, -0.9176699999999993, 0.10997999999999974, 0.9274199999999997, 0.9785099999999997, 1.1142300000000003, 1.7737199999999997, 1.4504099999999998, 1.6173300000000004, 2.0358000000000014, 1.3431599999999997, 1.5845699999999998, 1.7589000000000001, 1.2323999999999993, 1.2830999999999997, 0.8763299999999996, 0.6138599999999999, 1.3427699999999994, 0.6895199999999997, -0.3096599999999998, -0.5596499999999993, -0.6715800000000058, -0.04055999999999904, 0.40598999999999974, 0.43133999999999995, 1.0452000000000004, 1.28349, 1.5291899999999994, 0.6973199999999997, 1.2008099999999997, 1.8318299999999996, 0.8751599999999997, 1.0221899999999997, 1.1118899999999994, 1.5213900000000002, 0.8314799999999997, -0.03354000000000101, 0.9410699999999997, 1.0483199999999997, 0.15288000000000013, 0.7647899999999999, 1.2803699999999996, 0.85527, 1.9640399999999993, 1.0506600000000001, 1.0674299999999999, 1.2152399999999997, 1.1949599999999996, 0.3977999999999997, 0.23283000000000087, 0.23399999999999999, 0.8946599999999998, 1.17351, 0.7090199999999994, 0.5413199999999997, -0.3182400000000012, 0.19032000000000093, -0.36269999999999825, -0.11193000000000053, -1.1988599999999996, -0.6119099999999997, 0.5346899999999999, 0.8061299999999996, -0.3026399999999996, 0.16418999999999961, 0.9324899999999998, 0.5982599999999987, 0.6598800000000005, 0.020669999999999966, -0.2874299999999994, -0.5101200000000019, -1.22421, -0.69069, -0.9320999999999975, -0.01832999999999907, 1.09785, 0.7351499999999993, 0.41301000000000054, 0.8739899999999996, 0.9453599999999998, 0.46760999999999997, 0.062399999999999456], [0.0, 0.2141099999999989, 0.788969999999997, 1.17936, 1.4457299999999984, 1.9648199999999982, 2.061150000000002, 2.1340800000000013, 1.5424499999999974, 1.3341899999999987, 1.0834199999999998, 1.6621799999999984, 1.5506400000000031, 1.4722499999999985, 1.4679599999999997, 1.9519500000000036, 1.5381599999999986, 0.723059999999999, 0.25544999999999984, 0.4289999999999986, -0.5873400000000009, -0.8810100000000012, -1.3611000000000009, -0.5678400000000011, 0.28391999999999995, 0.051479999999999304, -0.08190000000000108, 0.17900999999999923, 0.089699999999999, -0.39156000000000085, -0.26793000000000067, -0.16926000000000074, 0.268319999999999, 0.6618299999999991, 0.5643299999999992, 1.6216199999999992, 1.424279999999999, 0.6700199999999995, 0.818219999999999, 1.2752999999999988, 2.305679999999998, 2.278770000000002, 2.58453, 2.0525699999999993, 1.938299999999999, 1.5229499999999994, 2.0412600000000007, 1.3018199999999989, -0.1868100000000006, 0.4040399999999983, 0.5939699999999987, 0.322529999999999, 0.4516199999999998, -0.022620000000000973, 0.02378999999999931, -0.773370000000001, -0.5725200000000006, -0.7659600000000013, -0.17043000000000008, -0.3755700000000009, -0.19344000000000094, 0.10763999999999918, -0.31044000000000066, 0.9944999999999996, 1.1832599999999993, 1.1399700000000008, 1.4110200000000002, -0.37401, -0.5319600000000005, -0.6692400000000008, -0.4527900000000006, 0.40988999999999887, 0.08930999999999911, 0.46565999999999896, 0.6575399999999961, 0.08774999999999822, 0.46487999999999763, 0.22931999999999897, 0.6126899999999994, 0.8014500000000012, 0.46917000000000064, 0.25349999999999995], [0.0, 0.1622399999999935, -0.22776000000000085, -0.15327000000000357, 0.2562299999999942, 0.4582499999999996, 0.4278299999999957, 0.8981699999999897, 1.8119399999999977, 1.4133599999999928, 1.3267799999999985, 1.7491499999999953, 1.7366699999999962, 1.124760000000001, 1.587299999999999, 1.5755999999999943, 1.4589899999999973, 1.0779599999999983, 1.035060000000004, 1.2877799999999961, 0.4172999999999991, 0.11465999999999532, 0.8884199999999947, 0.9098699999999971, 0.5643299999999982, 0.9710999999999927, 0.29445000000000565, 0.6290699999999978, 1.3006499999999974, 1.7978999999999927, 1.021019999999992, 1.0572899999999974, 0.9324899999999934, 0.09047999999999679, 1.076399999999997, 0.9278099999999982, 1.7120999999999995, 1.3337999999999939, 0.6512999999999955, 1.1914499999999952, 1.1512799999999963, 0.4258799999999914, 1.6824599999999954, 1.4496299999999946, 1.6645199999999973, 1.2269399999999946, 0.7339799999999919, 1.602899999999995, 1.6715399999999958, 0.6470099999999954, 1.4098499999999978, 1.223429999999997, 0.7616699999999987, 1.114619999999995, 0.7885799999999952, 0.3568499999999979, -0.15131999999999657, 0.4044299999999943, 0.1965599999999963, 0.30653999999999826, -0.6719700000000008, -0.16380000000000727, -0.08228999999999687, 0.6427199999999891, 0.6353099999999987, 0.9527699999999939, 0.8423999999999952, -0.17939999999999667, -0.5370300000000077, -0.9480900000000032, -0.48789000000000016, -0.9414600000000046, -0.43914000000000364, 0.5475599999999936, 0.6965399999999953, 0.8564399999999983, 1.2678899999999969, 0.6778199999999961, 0.8704799999999899, 1.4344199999999976, 0.47579999999999156, -0.2613000000000065], [0.0, -0.7218900000000004, -0.29600999999999905, 0.423930000000002, 1.1009699999999991, 1.301820000000001, 2.2308, 1.7312100000000006, 1.37748, 1.3139100000000001, 0.8739900000000005, 1.4488500000000015, 1.1477700000000002, 1.5826199999999992, 1.9152900000000004, 1.8751199999999988, 2.0069400000000033, 0.8977800000000002, 0.3517800000000001, -0.5354700000000003, -0.8533199999999992, -0.8841299999999994, -1.4055600000000001, -1.714050000000003, -0.6407699999999985, -0.42315000000000075, -0.4172999999999986, -0.7967700000000006, 0.08463000000000082, 0.6633900000000004, 0.8061300000000005, 0.92313, 1.1544000000000008, 1.5104699999999998, 1.9336200000000006, 1.3377000000000003, 1.2632100000000013, 0.39624000000000076, 0.21099000000000076, 1.6949400000000006, 1.8856500000000003, 1.6005600000000006, 0.4430400000000002, 1.3287299999999995, 1.3533000000000002, 1.594710000000002, 1.6789499999999982, 0.7215000000000011, 0.9555000000000011, 0.02262000000000053, -0.004679999999999351, 1.5038400000000003, 1.6196700000000013, 2.6102700000000008, 1.5346500000000007, 1.8638099999999995, 1.1056500000000007, 0.7417800000000006, 2.026829999999999, 0.7983300000000007, 0.6614400000000004, 0.3790800000000011, -0.3439799999999988, -0.3517799999999998, -0.5678400000000003, 0.2889900000000004, -0.0616199999999999, 0.6672900000000006, 0.40482000000000057, -0.3638699999999991, -0.931319999999999, -0.2671499999999996, 0.026130000000000764, 0.4707300000000002, 0.22035000000000113, 0.22464000000000048, -0.16574999999999945, -0.24179999999999974, -0.39740999999999865, 1.5163200000000003, 0.4582500000000006, -0.3279899999999996], [0.0, -0.013649999999995721, -0.0787799999999983, 0.5588700000000042, 0.08970000000000322, -0.01442999999999861, -0.8384999999999962, 0.8010600000000037, 1.666860000000002, 1.7889300000000046, 0.7156500000000032, 0.6575400000000022, 0.8751599999999993, 1.2994800000000009, 1.6337100000000047, 1.561560000000001, 0.9582300000000039, 0.6173700000000037, 0.03549000000000202, 0.6111300000000033, 0.7339800000000016, -0.14936999999999934, -0.21956999999999205, -0.4703399999999993, 0.03627000000000313, 1.9800300000000013, 1.438710000000007, 1.746030000000002, 0.8938800000000029, 0.1326000000000085, 0.695760000000003, 0.9449700000000045, 0.9048000000000034, 0.40794000000000263, 0.717990000000003, 1.2593100000000006, 0.14157000000000242, -0.8798399999999988, 0.4488900000000009, 1.0826400000000005, 0.07566000000000361, 0.29562000000000443, 0.5850000000000026, 1.1992500000000041, 1.4488500000000029, 1.1992500000000037, 1.086150000000004, 1.1922300000000048, 1.0584600000000024, 0.10920000000000307, -0.3650399999999969, 0.21723000000000203, 1.0947300000000046, 1.3497900000000014, 0.2733900000000009, -0.2850899999999985, 0.30848999999999993, 0.8888100000000017, 0.6224400000000014, -0.20318999999999665, 0.18096000000000378, -0.1146599999999891, 0.30537000000000303, 0.7874100000000026, 0.23790000000000022, 0.7675200000000029, 0.7199400000000016, -0.04601999999999862, -0.1505399999999959, -0.5666699999999949, -1.4839499999999965, -1.1844299999999928, -0.4360199999999983, -0.20825999999999656, 0.44304000000000254, 1.0779600000000014, 0.5596500000000053, 1.1040900000000025, 1.0303800000000045, 0.2109899999999989, -0.059669999999996115, -0.14156999999999798], [0.0, -0.451620000000001, -0.9324899999999969, 0.11660999999999433, 0.5811000000000028, 0.4968600000000025, 0.43797000000000175, 0.21683999999999415, 0.8732099999999989, 1.371630000000002, 0.7523100000000023, 0.844739999999998, 1.822859999999999, 1.959360000000001, 1.9184100000000002, 1.3540799999999988, 1.403219999999998, 0.510119999999997, -0.018719999999993853, -0.5756400000000008, -0.25272000000000094, -0.6984900000000014, -0.5206500000000034, -1.1961299999999975, -0.6700200000000036, 0.31043999999999805, 0.053039999999997534, -0.1739399999999991, 0.9254699999999989, 1.3283399999999963, 1.2990900000000032, 0.9305400000000001, 0.9808500000000024, 1.1434799999999976, 0.48749999999999805, 0.9434100000000014, 0.7125299999999988, -0.06512999999999991, 1.0202399999999954, 0.446550000000002, 0.6509099999999983, 0.3057599999999985, 0.18642000000000358, 0.49725000000000286, -0.5183099999999952, -0.30458999999999836, -0.03080999999999623, 0.9703200000000014, 0.0986699999999967, -0.8330399999999996, -0.7702500000000008, 0.4375800000000005, 0.4282199999999996, 1.9199700000000024, 1.23903, 1.2191400000000034, 0.7511400000000013, 0.9687599999999974, 0.5354700000000006, 0.2811899999999987, 0.48866999999999905, -0.5842199999999993, -1.5323100000000052, -1.0783500000000004, -0.2815800000000026, 0.22815000000000296, -0.3389099999999994, -0.6302400000000006, -0.9223499999999962, -0.32253000000000664, -0.9913799999999959, -0.3201899999999984, -0.4656600000000015, -0.02613000000000021, 0.6005999999999996, 1.404390000000002, 0.977729999999998, 0.6415500000000018, 0.48944999999999705, 0.16536000000000417, -0.5966999999999958, -1.3934699999999944], [0.0, -0.7359300000000024, -0.016380000000003392, 0.8041799999999961, 1.1742899999999965, 0.28586999999999385, 0.739440000000001, 0.06941999999999471, 0.6450599999999982, 0.9164999999999957, 0.6263399999999999, 0.24804000000000315, 0.5951399999999962, 1.5385499999999976, 0.37244999999999795, 0.851369999999994, 1.1703899999999976, 0.767909999999997, 0.10685999999999929, 0.32408999999999466, 0.7480199999999959, -0.6821099999999971, -1.0572900000000045, -1.3049399999999967, -0.37206000000000383, 0.24452999999999747, -0.01209000000001037, -0.5651099999999998, -0.08112000000000474, 0.3482699999999994, 0.38570999999999867, 0.524160000000002, 1.0319399999999996, 0.02925000000000111, -0.3346199999999966, -0.0822900000000022, -0.48281999999999314, -1.1668800000000044, 0.5319599999999953, 0.3147300000000026, 0.38493000000000066, -0.23750999999999856, 0.04095000000000315, -0.9543299999999988, -0.14937000000000733, 0.7289099999999991, 0.20318999999999932, -0.5608200000000085, -0.14546999999999422, -0.5132399999999979, -0.8014500000000053, -0.29055000000000053, 0.6867900000000002, 0.28742999999999963, 0.3463200000000013, 0.5007599999999988, 0.794819999999997, 0.22658999999999363, 0.3077100000000055, -0.0705900000000037, 0.12948000000000182, -0.5342999999999991, -0.2815800000000017, -0.5775900000000016, -0.3490499999999983, 0.33305999999999614, -0.006240000000003576, -0.17745000000000033, -0.2499899999999995, -0.7854599999999987, -1.4886299999999961, -2.1980399999999998, -1.921140000000002, -0.8131500000000003, -0.47930999999999724, 0.24530999999999725, 0.5904599999999993, 0.6817199999999977, -0.34632000000000485, -0.16107000000000138, -0.07098000000000493, -0.7718099999999977], [0.0, -0.7179900000000079, -0.545610000000003, 0.13805999999999718, -0.37205999999999895, -1.1044800000000086, -0.9414600000000033, -0.7761000000000058, -0.264030000000004, -0.8794500000000034, -0.8115900000000011, -0.18564000000000203, -0.21645000000000403, 0.7402199999999968, 1.218359999999999, 0.7156499999999975, 0.5046599999999968, 0.5963099999999946, 0.8342100000000001, 0.05537999999999421, 0.02222999999999553, -0.6236100000000011, -1.0549500000000025, -1.666470000000004, -0.5089500000000036, -0.32955000000000734, -1.003080000000002, -0.9422400000000004, -0.8833500000000041, -0.7265700000000033, 0.299519999999994, -0.08970000000000411, -0.43602000000000674, 0.2523299999999975, -1.6450200000000015, -1.3728000000000051, -1.3279500000000022, -1.1013600000000023, -0.7636200000000013, -0.5791500000000047, -0.43797000000000486, -1.0167300000000052, -1.3618800000000029, -1.5108600000000072, -1.8096000000000032, -0.6427200000000033, -0.23868000000000134, -0.5081700000000042, -0.9055800000000023, -1.116960000000006, -1.2979200000000022, -0.8903700000000025, 0.3587999999999978, 0.6216599999999954, 0.26948999999999534, 1.047929999999999, 0.8127599999999968, 1.2780299999999971, 0.08111999999999586, -0.31278000000000583, -0.6193200000000045, -1.2717900000000082, -0.8880300000000032, -0.42666000000000803, -0.5050500000000033, -0.5639399999999992, -0.941070000000003, -0.48828000000000715, -0.8708700000000045, -1.4114099999999965, -1.2507300000000052, -1.1485500000000037, -0.9009000000000054, -0.7000500000000045, 0.28157999999999506, 0.09164999999999823, -0.6341400000000021, -1.3470600000000097, -0.4804800000000027, -1.5034500000000026, -1.4359800000000016, -1.5681899999999986], [0.0, -0.13142999999999838, 0.44148000000000076, 0.2597400000000013, -0.04133999999999838, -0.020670000000000632, -0.4613699999999994, -0.92079, -1.1364599999999985, 0.12636000000000025, 0.3225300000000004, -0.6329699999999987, 0.6789900000000008, 0.12051000000000067, -0.30927000000000016, -0.6197100000000002, -1.15986, -0.7058999999999997, -0.11465999999999821, -0.8700900000000007, 0.006630000000001468, -1.0689899999999992, -0.9320999999999999, -1.1583000000000017, -0.3568500000000001, 0.9933300000000004, 0.3697200000000004, 0.2476500000000006, -0.04289999999999927, 0.8724300000000005, 0.537030000000001, 0.7371000000000005, -0.05069999999999819, -0.49178999999999884, 0.40130999999999994, 0.4578600000000004, -0.4387499999999982, -1.5982199999999975, -1.2663299999999997, -1.5252900000000016, -2.1773700000000025, -2.5303200000000023, -2.42385, -2.4616799999999976, -2.0997600000000016, -2.0619299999999985, -1.8778500000000025, -0.8786699999999981, -1.3630500000000014, -1.6056300000000012, -1.3860599999999994, -1.7823000000000009, -0.6466200000000002, -0.79443, -1.1064299999999994, -2.2854000000000028, -1.9285499999999989, -0.6750899999999977, -0.40911000000000075, -0.7998899999999995, -1.9718399999999987, -1.5506399999999994, -1.6419000000000012, -2.0081099999999976, -1.662960000000001, -1.1664899999999998, -0.2125499999999989, -0.8310899999999983, -0.781169999999999, -1.3123499999999984, -1.9227000000000023, -2.1169200000000004, -1.2916800000000002, 0.35139000000000054, 0.17355000000000065, 0.4878900000000005, 0.3467100000000011, -0.48827999999999894, -1.1356799999999991, -0.7608899999999996, -0.6848400000000006, -1.1590799999999983], [0.0, 0.41690999999999956, 1.1341199999999998, 0.785070000000001, 0.6840599999999999, 1.1029199999999997, 1.2043199999999992, 0.7920899999999998, 0.5307899999999993, 0.8279699999999992, 0.5498999999999998, 1.0229699999999997, 1.3482300000000005, 1.7152199999999986, 1.6641299999999988, 1.7202899999999985, 0.9847499999999998, 1.2366899999999998, 1.0182899999999997, 0.5409299999999989, 0.8888099999999997, 0.3385199999999997, 0.1400100000000004, -1.0062000000000022, 0.087359999999999, 0.08619000000000088, 0.7484099999999989, 0.09281999999999968, -0.7140900000000001, -0.1829100000000008, 0.7487999999999999, 1.1828699999999992, 0.47501999999999955, 0.7343699999999995, 0.38843999999999834, 0.6782100000000002, 0.7757099999999989, 1.6181099999999997, 1.7452499999999997, 0.8318699999999997, 0.9180599999999999, 1.06002, 0.1524899999999989, -0.6380399999999999, -0.7148700000000012, -0.05811000000000033, 0.4247099999999998, 0.02691000000000021, -0.07527000000000017, -0.9270300000000022, -0.6353099999999998, -0.030810000000000004, 1.16142, 1.5670199999999994, 2.1079499999999998, 1.078349999999999, 0.8751599999999998, 0.1614599999999995, 0.4754099999999992, -0.6431099999999994, -0.5027100000000015, -0.2706599999999999, -0.48087000000000013, -0.05226000000000042, 0.05771999999999977, -0.11895000000000033, -0.21450000000000058, -0.18875999999999915, -0.3482700000000005, 0.03549000000000002, -0.25389000000000084, -0.10491000000000095, -0.7722000000000009, -0.20124000000000208, 0.4804799999999998, 0.62829, 0.34514999999999996, -0.08852999999999978, -0.12597000000000014, -0.5506800000000016, -0.5982600000000011, -0.37596000000000096], [0.0, 0.2850900000000005, -0.30459000000000014, -0.5733000000000019, -1.0600200000000002, -1.3712399999999976, -0.7581600000000033, -1.262430000000002, -1.655940000000002, -1.198470000000004, -0.9016800000000034, -0.5081699999999985, -0.6282900000000007, 0.1427399999999981, -0.14976000000000056, -1.2390299999999983, -1.3548600000000004, -1.4901900000000023, -1.0190699999999988, -0.264420000000003, -0.3174599999999983, -0.1833000000000009, -0.04290000000000038, 0.4379699999999995, 0.1790099999999999, -0.4414800000000003, -0.7406100000000011, -2.114580000000003, -1.5459599999999987, -1.3997100000000042, -0.890370000000003, -1.0510499999999965, -0.7129200000000031, -0.1287000000000016, -0.785070000000001, -0.12518999999999947, -0.9168899999999991, -1.9293300000000038, -0.7589400000000048, -1.2035400000000012, -2.051400000000001, -1.59822, -2.2261200000000025, -2.4804000000000004, -1.712100000000003, -2.1364200000000046, -1.572480000000001, -0.8708699999999978, -1.9012500000000028, -2.0264400000000053, -1.513590000000001, -0.12518999999999947, -0.9574499999999997, -0.05069999999999819, -0.07761000000000084, -0.5300100000000008, -1.156350000000002, -0.8728200000000017, -1.03662, -1.4667900000000023, -1.970279999999998, -1.8915000000000024, -2.149679999999999, -1.5022800000000065, -2.0759700000000008, -1.9687200000000056, -0.9668100000000046, -0.9839700000000025, -0.6037200000000014, -1.7347199999999998, -1.9363500000000027, -1.8142800000000037, -1.7464200000000063, -1.067429999999999, -1.3045500000000025, -1.4051700000000027, -1.1739000000000015, -1.4874600000000004, -1.2967500000000025, -1.0011300000000025, -0.7987200000000017, -1.0736699999999981], [0.0, 0.11232000000000153, 0.6275099999999991, 0.20631000000000088, -0.18407999999999625, 0.9301500000000025, 1.2214799999999992, 0.36114000000000335, 1.1438700000000037, -0.7308599999999978, -1.4047799999999993, -0.7659599999999988, 0.419250000000003, 0.7160400000000022, 0.517530000000002, 1.1910600000000033, 0.9816300000000027, 0.0007800000000033336, -0.42236999999999525, -0.031589999999996454, 0.3771300000000024, 0.4894500000000024, 1.0959000000000025, 1.0647000000000038, -0.010139999999998484, 0.754650000000002, 0.13962000000000296, -0.7858499999999974, -0.1626299999999976, -0.4430399999999981, 0.0705900000000017, 0.28119000000000205, -0.8030099999999972, -0.40676999999999786, -0.7413899999999972, 0.3767400000000025, -0.6200999999999985, 0.06279000000000345, 0.29562000000000177, 0.009360000000001367, -0.7952099999999972, -1.4819999999999975, -1.3349699999999978, -1.9273799999999977, -1.6582799999999975, -1.1001899999999982, -0.3022499999999986, 0.3681600000000045, -0.1056899999999994, -0.9398999999999985, -0.4668299999999994, -0.9710999999999969, -0.27455999999999725, -0.2020199999999963, 0.14586000000000077, -0.12206999999999835, -0.0565499999999981, 0.5565300000000004, -0.13415999999999761, -0.6622199999999967, -0.001949999999998564, -0.5709599999999984, -1.3458899999999978, -0.9968399999999977, -1.0506599999999975, -1.8677099999999982, -1.6781699999999982, -1.5783299999999978, -1.0670399999999973, -1.6407299999999974, -1.1871599999999978, -0.6782099999999975, -0.5030999999999977, -0.409499999999998, -0.19733999999999607, -0.6497399999999998, -0.8845199999999976, -1.0966799999999979, -0.7370999999999979, -0.10763999999999774, -0.8646299999999976, -2.4566099999999973], [0.0, -0.1739399999999991, 0.2683199999999939, 0.7839000000000027, 0.17432999999999943, 0.67197, 0.5619900000000042, 0.2698799999999908, -0.22658999999999274, -0.03899999999999881, 0.008190000000006137, 1.23318, 0.4013100000000014, 0.21917999999999882, 0.7526999999999955, -0.17471999999999888, -0.2733900000000027, -0.012090000000001488, -0.3194100000000013, -0.4609799999999993, -0.8143199999999995, 0.4184700000000028, 0.680939999999997, 1.1816999999999966, 0.4239299999999995, 1.0686000000000027, 0.7320299999999991, 0.0826799999999972, 0.688349999999998, 0.5206499999999954, 0.7074600000000046, -0.20748000000000033, -0.48476999999999926, -0.08267999999999365, 0.07215000000000504, 0.5339099999999997, -0.9952800000000019, -0.8033999999999963, -0.32057999999999964, -0.35021999999999576, -1.297919999999995, -1.271399999999998, -0.13260000000000716, -1.0085399999999947, -0.7016099999999987, 0.039000000000002366, -0.15990000000000304, -0.11621999999999755, 0.41144999999999765, -0.050700000000000855, -0.418470000000001, 0.8919299999999994, 0.21254999999999669, -0.24297000000000235, 0.30264000000000024, 0.7480200000000048, 0.6594899999999999, 0.8966099999999955, 0.11271000000000075, 0.1095899999999963, 0.5916300000000003, -0.6193200000000001, -1.2472199999999987, -1.189499999999999, -0.8182199999999957, -0.806910000000002, -0.6298499999999985, -0.32252999999999954, -0.15326999999999913, -0.006629999999995917, -0.5931900000000061, -1.026869999999997, -1.0416899999999938, -0.7429500000000013, -0.04679999999999751, -0.3506100000000032, 1.288949999999999, -0.089310000000002, -0.3915599999999948, 0.2433600000000009, 0.2811899999999996, 0.0542100000000012], [0.0, 0.27885000000000826, 0.5974799999999902, 0.6080099999999975, 1.5440099999999948, 2.1231599999999986, 1.7842499999999921, 1.8875999999999928, 1.6411199999999964, 1.3782599999999974, 0.1922699999999926, 0.37049999999999983, 1.5206100000000005, 2.003429999999997, 1.5506399999999978, 1.813889999999998, 1.3139099999999937, 0.9629099999999937, 1.083419999999995, 0.7172099999999988, 1.9129499999999986, 2.1227699999999947, 2.2744799999999934, 2.126669999999998, 1.1879399999999993, 0.5467799999999992, 0.02339999999999698, -0.4020900000000083, -1.0822500000000046, -1.0865399999999976, -0.9383400000000055, -0.5569200000000007, 0.18213000000000346, 0.668069999999994, 0.5467799999999974, 1.3431599999999966, 0.2109900000000069, -0.786240000000002, 0.02417999999999232, -0.2511599999999987, 0.10061999999999482, 0.3821999999999992, 0.5912399999999947, 0.22424999999999962, 0.10451999999999728, 0.10763999999999907, 0.9293699999999969, 0.5608199999999979, 0.17237999999999598, -0.7624500000000065, -0.031200000000000117, 0.17939999999999579, 0.4153499999999912, 0.40481999999999907, 0.41924999999999724, 0.7199399999999949, 1.2086100000000002, 1.6633499999999968, 1.1610300000000002, 0.9406799999999889, -0.03354000000000301, -0.6041100000000057, -0.1337699999999984, 0.16301999999999772, -0.828749999999995, -0.42159000000000013, 0.38921999999999723, 0.6618300000000001, 0.863069999999996, 0.1649699999999914, -0.4664400000000093, 0.7406099999999949, -0.00546000000000646, 0.4633200000000004, 1.8095999999999997, 0.5190899999999994, -0.2125500000000038, 0.5736899999999991, 0.6512999999999947, 0.9874799999999926, 0.7651799999999982, 0.12167999999999068], [0.0, -0.19851000000000052, 0.5970899999999995, 1.1567399999999992, 0.9601799999999996, 1.7705999999999982, 1.910219999999999, 1.878239999999999, 2.0108399999999995, 1.5752100000000007, 0.5198699999999995, 1.7202899999999994, 1.3790399999999994, 1.6551599999999986, 1.3493999999999986, 1.0120499999999997, 0.7733699999999997, 0.4683899999999998, 0.0670799999999997, 0.3209699999999992, 1.5533700000000001, 1.7826899999999997, 0.7008299999999995, 1.6208399999999987, 1.9792499999999982, 1.6524299999999994, 1.2413699999999996, 1.3864499999999997, 0.6029399999999994, 0.6540299999999996, 0.3119999999999995, 1.2136799999999983, 1.6387799999999988, 1.4726400000000004, 1.0919999999999996, 0.9812399999999993, 0.07760999999999829, -0.3182400000000004, -0.15717000000000036, -0.031590000000001006, -0.04641000000000062, 0.3221399999999997, 0.43835999999999975, 0.19421999999999928, 0.6735299999999994, 0.6801599999999998, 0.6649499999999995, 0.4184699999999992, 1.1095499999999996, 0.7628399999999997, 0.24647999999999903, 0.18836999999999926, 0.11426999999999954, 0.5307899999999998, 0.46565999999999985, 1.0202399999999998, 0.35724000000000006, 1.2819299999999991, 1.1317799999999991, 0.7234499999999998, -0.0409500000000006, -0.2515500000000007, 0.3357899999999995, 0.6590999999999996, -0.54951, -0.008190000000000475, -0.002340000000000786, -0.44304000000000043, 0.24804000000000026, 0.6973199999999994, 0.4052099999999997, 0.4777499999999997, 0.18408000000000024, 0.07136999999999927, 0.6879600000000001, -0.09867000000000137, -0.22152000000000072, 0.20006999999999958, 0.33149999999999963, -0.49140000000000106, 0.41807999999999984, -0.25584000000000096], [0.0, -0.11934000000000076, 0.10724999999999978, 0.7858499999999997, 1.33926, 1.111499999999999, 0.9617400000000003, 1.5525900000000008, 1.7280899999999988, 0.9449699999999985, 0.2324399999999996, -0.00468000000000153, 0.29679000000000005, 1.14426, -0.03783000000000032, 0.3365699999999997, 0.56199, 0.5342999999999989, -0.07059000000000056, 0.28586999999999935, 0.7031700000000002, 1.5455699999999994, 1.70586, 1.5284099999999998, 1.71093, 0.7967699999999994, -0.04602000000000041, -0.23673000000000044, -0.49724999999999947, -0.9882600000000015, -0.5713500000000011, 0.32487, 0.6360900000000004, 0.9749999999999999, 0.7870199999999995, 0.7425599999999992, 0.22931999999999958, 0.39584999999999976, -0.11739000000000004, 0.42314999999999975, 1.0506599999999995, 1.3376999999999992, 1.5623399999999992, 0.45551999999999954, 0.4352399999999998, 1.4301300000000001, 1.1403599999999978, 1.0327199999999999, 0.12948000000000004, 1.0315499999999986, 0.7175999999999995, 0.5292300000000003, -0.24063000000000045, 0.25076999999999966, 0.7526999999999995, 0.5756399999999995, -0.04797000000000043, 0.34670999999999974, -0.2964000000000009, 0.23204999999999965, -0.31941000000000047, -0.5569200000000001, -0.28119000000000033, -0.6240000000000006, -0.9668100000000006, -0.9235200000000003, -0.75894, -0.45396000000000086, 0.3049799999999996, -0.3139499999999998, -0.32214000000000004, -0.40989000000000037, -0.7605000000000005, 0.12284999999999925, 1.31937, 1.1793599999999997, 0.07292999999999981, -0.8447400000000006, -0.6575400000000007, -0.5214300000000005, -0.8213400000000006, -1.5455699999999997], [0.0, 0.5760299999999994, 0.9586199999999998, 0.3194099999999984, 1.4952600000000005, 1.8407999999999998, 1.9390799999999992, 1.918019999999999, 1.2877799999999995, 0.8490299999999994, 1.0970699999999995, 0.9629099999999995, 1.6957199999999988, 1.7764499999999996, 2.1001499999999966, 1.7826899999999997, 1.0931699999999995, 0.5943599999999992, 0.12206999999999923, 0.4122299999999996, 1.0814699999999997, 1.3747499999999997, 0.25778999999999935, 0.524159999999999, 0.4824300000000001, 0.9512099999999999, 1.5311399999999995, 1.5830099999999987, 0.8954399999999996, 1.005809999999999, 0.8260199999999993, 1.2815400000000001, 1.3209300000000002, 1.0728899999999997, 0.8576099999999995, 0.4321200000000001, 0.3334499999999989, 0.06785999999999981, 0.380249999999999, 1.21992, 0.2219099999999996, 0.10763999999999951, -0.28977000000000075, 0.19109999999999955, 0.9008999999999994, 1.2877799999999993, 0.7640099999999996, -0.024960000000000537, 0.33422999999999936, -0.11114999999999953, 0.010919999999999042, -0.4017000000000003, 0.24764999999999904, -0.18291000000000046, -0.19499999999999973, 0.5350799999999993, 0.32525999999999894, 0.37439999999999946, 0.6774299999999991, 0.48398999999999937, 0.04367999999999905, -0.16848000000000019, -0.23166000000000064, -0.08268000000000031, -0.47775000000000045, 0.03158999999999923, 0.7191599999999997, 1.1524499999999995, 1.1005799999999986, 1.1029199999999988, 0.6294599999999995, -0.15990000000000015, -0.15677999999999992, -0.23790000000000078, 0.5042699999999996, -0.16497000000000006, -0.2254200000000005, 0.44225999999999943, 0.7597199999999995, 1.2944099999999994, 0.8424000000000001, -0.15015000000000112], [0.0, 0.026909999999998435, 0.33189000000000046, 0.21839999999999782, 1.0089299999999977, 0.9309299999999997, 0.7686900000000007, 0.8583899999999988, 0.725789999999998, 0.9999599999999967, 0.4321199999999984, 0.18251999999999902, 0.7655699999999989, 1.0670400000000004, 1.6025100000000014, 0.8626799999999996, 0.3572399999999992, 0.7292999999999991, -0.32916000000000084, -0.15132000000000084, -0.29211000000000065, 0.25505999999999907, 0.21410999999999902, 0.42158999999999913, 1.204709999999999, 0.9742199999999998, -0.4009200000000009, -0.07410000000000072, -0.30615000000000114, 0.26870999999999823, -0.11310000000000064, 1.472640000000001, 1.2990899999999992, 0.579149999999999, 0.7866299999999985, 0.8981699999999987, -0.5460000000000009, -1.050660000000001, -0.7452900000000011, -0.22971000000000064, -0.0003900000000012227, 0.3155099999999996, 1.2986999999999993, 0.9625200000000008, 0.19538999999999895, 0.17510999999999854, 0.8583899999999994, 0.5397599999999997, -0.044070000000001164, -0.3186300000000017, -0.08346000000000053, -0.033930000000001015, -0.149370000000001, 0.09710999999999947, -0.4808700000000011, -0.48789000000000105, -0.9609600000000015, -1.0764000000000011, 0.15326999999999924, -0.31668000000000057, 0.14819999999999856, -1.1988600000000011, -1.2351300000000016, 0.3236999999999993, -0.05070000000000152, -1.0701600000000009, -0.7296900000000022, -0.5861700000000002, 0.3190199999999981, -0.7156500000000015, -1.3400400000000015, -1.1423100000000006, -0.9609600000000013, -1.111500000000001, -0.647400000000001, -0.707070000000001, -1.1973000000000007, -1.4090700000000016, -1.590030000000001, -1.5525900000000008, -0.8135400000000008, -1.274520000000001], [0.0, 0.382979999999999, 0.8388900000000006, 0.6552000000000033, 2.064660000000001, 2.0467200000000005, 2.488980000000001, 1.6672500000000028, 1.7850300000000008, 1.8837000000000028, 1.2460500000000034, 0.8958299999999997, 0.9808499999999984, 1.8029700000000006, 1.3813799999999983, 1.7503199999999994, 1.3373100000000013, 1.7862000000000005, 1.8392400000000015, 0.5651099999999989, 0.441480000000003, 0.18642000000000003, 0.8778900000000016, 0.9652499999999997, 0.8669700000000016, 1.4012699999999976, 1.4632800000000006, 1.8049200000000014, 1.3205400000000016, 1.8840900000000027, 2.060760000000002, 2.510820000000001, 2.1184800000000026, 0.6891300000000005, 1.0662599999999993, 1.753440000000002, 0.12480000000000446, -0.13610999999999818, 0.17159999999999664, 0.10022999999999849, 0.31433999999999873, -0.0935999999999999, 0.8973900000000037, 0.6552000000000007, 0.554190000000002, 1.3287300000000002, 2.003040000000002, 0.8993400000000022, 0.6493500000000014, 0.7819500000000015, 1.1969100000000017, 0.37167000000000083, 0.22893000000000274, -0.13064999999999705, 1.590810000000002, 0.9363900000000034, 1.6621800000000024, 0.9594000000000018, 0.7913099999999997, 1.051830000000002, 1.0136100000000012, 0.6579299999999995, 1.4730300000000014, 1.4792699999999992, 0.4184700000000019, 0.7944299999999997, 1.2554100000000026, 0.2823599999999993, 2.022929999999999, 1.6797300000000015, 0.929760000000003, 0.15522000000000036, 0.05226000000000086, 0.5179199999999979, 0.9090899999999995, 0.6224400000000019, -0.10373999999999972, 0.17042999999999786, 0.03470999999999913, 0.8123699999999996, 0.739050000000002, -0.1602899999999967], [0.0, -0.1856399999999978, 0.2577900000000013, 0.36036000000000223, 0.8568300000000015, 0.5405400000000007, 0.9703200000000011, 1.1649300000000014, 0.44069999999999987, 1.2312300000000007, 0.7488000000000001, 0.5202600000000006, 1.3813800000000014, 1.2207000000000003, 0.23907000000000123, 0.39156000000000035, -0.008189999999997699, 0.16458000000000061, -0.021839999999999193, 0.23088000000000086, -0.24140999999999813, 0.21372000000000013, 0.27885000000000004, 0.07332000000000005, 0.580710000000001, 1.1356800000000007, 0.6462300000000023, 0.015599999999999614, -0.29016, 1.6465800000000006, 2.053350000000001, 1.948830000000001, 1.3533000000000008, 1.3743600000000002, 1.1797500000000007, 0.7979400000000005, -0.46877999999999953, -0.8669699999999996, -0.2519399999999983, 0.36348000000000136, -0.18329999999999802, -0.5058300000000024, 0.05850000000000222, 0.9605700000000005, 0.8119800000000013, 0.8221200000000006, 0.7593300000000012, 0.2538899999999993, -0.379860000000001, -0.2690999999999997, 0.5943599999999987, -0.15482999999999625, -0.6700200000000025, -0.9141600000000005, -1.3880099999999989, -1.2226500000000005, -0.18524999999999836, -0.4504500000000007, -0.7975499999999995, -0.1704300000000012, 0.5183100000000009, 1.0116600000000004, 0.3158999999999994, 0.9461400000000015, -0.007019999999999582, -0.6661199999999987, 0.1716000000000002, -0.7987200000000005, -0.5459999999999996, -0.1988999999999994, -0.3556799999999989, -0.7909199999999996, -0.30888000000000093, -1.659839999999994, -0.7406099999999973, -0.4972499999999991, -1.7187299999999979, -1.1680500000000025, -1.1306100000000041, -0.5787599999999984, -1.0771799999999983, -0.6832799999999997], [0.0, 0.914550000000001, 1.356420000000001, 1.417650000000001, 1.2437100000000008, 1.3638300000000005, 2.173470000000001, 2.3263500000000006, 1.7951700000000017, 2.23002, 1.0424700000000013, 1.1883300000000006, 1.4554800000000006, 1.6766100000000013, 1.618500000000001, 1.6325400000000012, 1.2460500000000008, 1.674660000000001, 1.6668600000000011, 1.3646100000000014, 0.8892000000000005, 0.6091800000000005, 0.7051200000000011, 0.12792000000000092, 1.045590000000001, 0.9126000000000006, 0.11895000000000155, 0.039780000000000815, 0.5257200000000006, 1.0545600000000006, 2.0529600000000006, 1.936740000000001, 1.7725500000000012, 0.6860100000000005, 0.6661200000000003, 0.726570000000001, 0.08385000000000076, -0.4847699999999977, 0.045240000000000946, -0.19226999999999927, 0.7503600000000002, 1.4137500000000007, 1.7873700000000015, 1.5054000000000016, 0.7620600000000006, 0.4621500000000005, 0.8728200000000006, 1.7078100000000007, 1.198080000000001, 1.6532100000000005, 0.6657300000000013, 0.8244600000000006, 0.20982000000000012, 1.0732800000000007, 0.8271900000000003, 1.0709400000000007, 1.5580499999999997, 1.0424700000000007, 0.7367100000000009, 0.35919000000000056, 0.7803900000000003, 0.6201000000000005, 1.115010000000001, 0.9079200000000006, 0.9297600000000007, 1.0198500000000006, 1.6411200000000006, 2.5935000000000006, 2.5521600000000015, 2.3922599999999985, 0.9410700000000009, 0.4461600000000008, -0.06707999999999914, 0.20396999999999998, 0.8412300000000007, 0.5042700000000008, -0.2324399999999993, 0.031980000000000786, -0.5420999999999991, 0.04407000000000161, 0.7581600000000008, 0.7320300000000004], [0.0, 1.07991, 1.5128100000000027, 1.5494700000000017, 2.3396100000000013, 2.936310000000003, 2.942940000000001, 3.0427800000000014, 2.218320000000002, 2.8282800000000026, 2.7569100000000017, 2.5825800000000005, 2.6555100000000027, 2.9281200000000016, 2.454270000000002, 2.015910000000002, 1.3287300000000006, 1.5217800000000037, 1.6610099999999992, 1.9359600000000028, 1.1438700000000024, 0.6126900000000002, 0.8256300000000047, 1.4098499999999992, 1.5159300000000018, 2.2885200000000028, 2.4105900000000022, 1.3844999999999992, 2.1773700000000016, 3.135210000000002, 3.7572600000000023, 4.1581800000000015, 3.2210100000000033, 1.6009500000000005, 1.5931500000000045, 1.4024400000000012, 0.6825000000000023, 0.3408600000000006, -0.6056699999999937, 0.631019999999999, 0.3545100000000012, 1.8536700000000033, 1.1828700000000025, 1.1926200000000038, 1.8408000000000024, 1.722240000000002, 1.9028100000000023, 1.2519000000000031, 1.942200000000002, 1.9394700000000027, 1.428570000000005, 1.842360000000002, 0.3962400000000015, 0.7398300000000027, 0.059670000000005885, 0.6758700000000051, 1.9445400000000013, 1.1871600000000044, 0.09905999999999926, 0.9352200000000019, 2.531880000000003, 2.331030000000002, 1.323270000000003, 1.4480700000000017, 1.047930000000005, 1.0358399999999999, 1.1973000000000034, 1.4441699999999997, 1.5709200000000032, 0.9722700000000026, 0.7507499999999987, 0.3353999999999986, 1.0257000000000032, 1.6617900000000034, 1.060800000000004, 0.7265700000000033, 0.5920200000000051, 1.1754600000000024, 0.8697000000000008, 0.7585500000000063, 0.01287000000000127, 0.6559800000000031], [0.0, 0.3213599999999994, 0.5514599999999978, 0.5982599999999971, 0.9324899999999943, 0.7835099999999939, 2.040479999999998, 2.2210499999999964, 2.9873999999999974, 2.3033399999999964, 1.6426799999999968, 1.5989999999999962, 1.7273099999999992, 1.8969599999999989, 2.3696399999999977, 1.6649099999999968, 1.1368499999999981, 0.8560499999999975, 0.8693099999999983, 0.9168899999999982, 0.9531599999999973, 0.52806, 0.7940400000000021, 0.8564400000000023, -0.090480000000003, 0.3556799999999969, 0.3392999999999957, 0.9964499999999985, 1.4585999999999935, 1.285439999999995, 2.737019999999998, 3.433169999999997, 2.4098099999999985, 1.50345, 0.7889699999999973, 0.20864999999999556, 0.06083999999999801, 0.005069999999998576, -0.6204899999999993, 0.04094999999999516, 0.5803199999999928, 1.171169999999997, 1.5174899999999978, 0.6938099999999987, 0.43016999999999594, 0.771809999999999, 1.0089299999999968, 1.928939999999996, 1.6247399999999943, 1.5506399999999978, 1.3751399999999978, 1.778009999999997, 1.3174199999999985, 0.5467799999999956, 0.9285900000000016, 0.3326699999999998, 0.7729799999999947, 0.07097999999999693, 0.35723999999999734, 1.172339999999998, 1.8595199999999976, 0.872819999999999, 1.533089999999997, 0.6298500000000002, 0.39779999999999793, 1.4090699999999967, 1.899689999999997, 1.1505, 1.5011099999999962, 1.6181099999999975, 1.155959999999995, 0.3127799999999956, 0.3412499999999956, 0.2312699999999981, 0.45707999999999194, 1.0526099999999974, 0.3782999999999972, 1.4554799999999966, 0.8310899999999974, 0.8026199999999957, 1.0058100000000003, 1.1945699999999988], [0.0, 0.7850700000000019, 1.4621100000000045, 1.0565100000000065, 1.1259300000000096, 1.5802800000000063, 2.3298600000000036, 2.4963900000000043, 3.0158700000000063, 2.7826500000000056, 1.2944100000000027, 1.2772500000000053, 1.2815400000000037, 1.1138400000000037, 2.034240000000006, 0.4609800000000046, 0.6084000000000049, 0.4028700000000063, 0.4902300000000066, 0.4586400000000088, 0.7733700000000061, 0.6411600000000046, 0.9781200000000041, 1.3895700000000035, 0.914940000000005, 0.5066100000000047, 1.0502700000000038, 0.7897500000000077, 1.5081300000000022, 2.4059100000000053, 2.248740000000003, 2.2327500000000047, 1.7729400000000046, 1.5061800000000045, 1.5533700000000032, 0.8096400000000044, 0.8256300000000012, 0.1755000000000102, -0.3108299999999904, 0.37011000000000216, -0.17549999999999688, 0.3681600000000058, 0.5717400000000072, 1.349010000000006, 0.8365500000000043, 0.6555900000000081, 0.9235200000000034, 0.8334300000000043, 1.239810000000006, 1.0927800000000008, 0.6793800000000036, -0.05537999999999332, -0.48125999999999625, -0.2429699999999979, 0.3377400000000055, 0.42861000000000615, 0.5428800000000074, 0.9738300000000066, 0.28509000000000473, 0.8119800000000019, 0.9718800000000041, 1.4324700000000021, 1.176240000000003, 0.8521500000000053, 0.5943600000000062, 1.060020000000005, 1.559610000000005, 0.8006700000000073, 1.3747500000000072, 0.8275799999999993, 0.6497400000000058, 0.1365000000000105, -0.014429999999995502, 0.7374900000000011, 1.0674300000000079, 0.9001200000000091, 0.46565999999999885, -0.14702999999999466, 0.1587300000000038, 0.6243900000000027, 0.8650200000000048, 0.06240000000000112], [0.0, 0.04524000000000239, 0.18213000000000035, 1.0354500000000022, 1.3334100000000035, 0.996840000000002, 1.8634200000000019, 2.7452100000000024, 3.2709300000000017, 2.4343800000000027, 2.1309600000000026, 1.8018000000000025, 1.7678700000000025, 2.3661300000000027, 2.651220000000002, 1.9223100000000022, 1.4937000000000022, 0.8486400000000032, 0.8541000000000019, 0.2055300000000031, -0.32447999999999544, -0.4508400000000008, -0.6224399999999992, -0.9476999999999949, -0.8256299999999959, -0.24296999999999436, -0.1415699999999971, 0.29640000000000244, 0.03509999999999991, 1.074060000000003, 1.9542900000000025, 2.132130000000002, 1.6754400000000025, 1.058070000000002, 1.2015900000000024, 1.2343500000000016, 0.7952100000000002, 0.715260000000002, 0.42900000000000027, 0.846300000000004, 0.759330000000001, 1.390350000000002, 0.8888100000000021, 1.3365300000000024, 1.4539200000000025, 1.5584400000000027, 0.9016800000000018, 1.200030000000004, 1.4410500000000022, 1.7589000000000024, 1.1520600000000023, 1.085370000000003, 1.2452699999999997, 1.3377000000000023, 1.725750000000002, 1.776060000000002, 1.5724800000000028, 0.9976200000000013, 1.201980000000002, 1.4461200000000027, 0.43485000000000085, 0.8704800000000028, 1.1115000000000033, 1.282320000000002, 1.1376300000000026, 1.6937700000000029, 2.245620000000002, 2.392650000000002, 3.090750000000002, 2.9963700000000024, 1.6083600000000022, 0.5272800000000002, 1.0459800000000012, 0.5167499999999996, 0.9945000000000037, 1.217580000000002, 1.4788800000000037, 0.9855300000000007, 1.098630000000003, 1.0916100000000042, 0.9422400000000013, 0.8190000000000026], [0.0, 0.5935799999999996, 0.2690999999999999, 0.8330400000000001, 1.394249999999999, 1.8665399999999996, 2.2947599999999997, 2.473769999999999, 2.7475499999999986, 3.403529999999999, 2.2300199999999997, 2.358719999999998, 1.1719499999999994, 1.8228599999999986, 1.6087499999999983, 1.6407299999999996, 0.7971599999999988, 0.8100299999999987, 0.576419999999999, 0.3611399999999987, -0.1365000000000023, 0.24842999999999882, 0.11894999999999922, 0.12675000000000036, -0.13025999999999982, -0.9051900000000013, -0.0819000000000003, -0.5635499999999987, -0.4582500000000016, 0.8435699999999996, 2.049839999999999, 2.0006999999999993, 2.1461699999999992, 1.2214799999999992, 0.5955299999999979, 0.5303999999999995, -0.21528000000000147, -0.22035000000000005, -0.5467800000000003, -0.840840000000002, 1.305719999999999, 1.1360699999999997, 0.9469199999999995, 0.5651099999999987, 0.6758699999999986, 0.7901399999999987, 0.9933299999999993, 0.8704799999999971, 0.7121399999999993, 0.7215000000000003, 1.1380199999999987, 1.0116599999999984, 0.4968600000000003, 0.49451999999999874, 0.21956999999999915, 0.7308599999999992, 1.3306799999999996, 0.39468000000000014, 0.6902999999999995, 0.8856899999999992, 0.3907799999999988, 1.4020499999999994, 0.9995699999999982, 0.6587100000000006, 1.0444199999999997, 1.5081299999999995, 1.8450899999999995, 1.8329999999999995, 1.7776199999999995, 1.2136799999999996, 0.4656599999999984, 0.29756999999999945, 0.6267299999999991, 0.4711200000000002, 0.6501299999999992, 0.8849099999999989, 1.5268499999999996, 1.3766999999999994, 0.6329699999999985, 0.69615, 0.5288399999999995, 0.5066099999999993], [0.0, 0.017939999999997402, 0.25545000000000195, 0.8306999999999987, 1.6107000000000002, 1.3981500000000031, 1.6610099999999985, 2.008890000000002, 3.103229999999999, 3.644159999999987, 3.3075899999999985, 2.3583300000000014, 2.589599999999999, 2.3388299999999997, 2.2826699999999986, 3.372329999999997, 2.3403899999999975, 2.166839999999997, 1.8408000000000004, 1.1524499999999984, 0.8962199999999967, 1.1536199999999999, 0.6052799999999989, 0.15170999999999824, 0.1329899999999986, -0.4925700000000013, -0.262860000000003, 0.3693299999999975, 0.2776799999999999, 0.7476299999999998, 1.4277899999999992, 2.04516, 2.266680000000001, 2.3879699999999966, 2.0100599999999984, 1.5389400000000013, 1.4094600000000004, 1.7916599999999965, 1.248779999999998, 2.569320000000001, 2.0939099999999993, 1.2776399999999979, 1.3630499999999983, 1.066649999999999, 1.4808299999999972, 1.4192099999999985, 1.6555500000000027, 1.3876200000000003, 1.3525199999999964, 1.4039999999999997, 2.137199999999999, 1.851330000000001, 2.2109099999999957, 1.1165699999999992, 1.6528199999999995, 2.650439999999996, 2.589209999999997, 1.9995300000000007, 1.4484600000000014, 2.310360000000003, 1.7877600000000016, 0.91923, 1.4344199999999978, 1.2487799999999998, 1.3805999999999992, 1.8836999999999995, 2.6500499999999967, 1.8790199999999986, 2.511600000000003, 1.9730099999999988, 2.498730000000002, 1.922700000000001, 2.5311000000000003, 1.1582999999999972, 0.8552699999999984, 2.0155199999999995, 1.4149199999999984, 1.5159300000000007, 2.2483499999999985, 1.4433899999999988, 1.5471300000000003, 1.4402700000000024], [0.0, 0.2070900000000031, 0.008190000000003472, 0.46176000000000084, 0.5768100000000005, 0.9188399999999985, 1.1754599999999988, 1.829880000000001, 2.956200000000001, 3.2260800000000005, 2.7787499999999996, 2.251079999999999, 1.7694300000000003, 1.2370799999999988, 1.86654, 2.2237800000000005, 2.9382600000000014, 2.0978100000000004, 1.7780100000000028, 0.8080800000000008, 0.5428800000000003, 0.7874099999999995, 0.8018400000000021, 1.035839999999999, 0.8365500000000003, 0.6696300000000015, -0.060839999999998895, -0.12674999999999859, 0.8209499999999994, 0.5729099999999989, 1.27881, 1.8021899999999982, 1.5061799999999992, 1.5420600000000007, 0.6251699999999984, 0.9098699999999997, 1.164539999999998, 0.6719700000000013, 0.7320299999999982, 1.1875500000000008, 1.275689999999999, 1.3486199999999995, 0.7628400000000037, -0.28547999999999973, -0.052260000000002194, 0.4137899999999979, 1.37085, 1.1703899999999972, 1.5596100000000002, 1.3876199999999992, 1.056509999999999, 1.3018200000000002, 1.2936300000000043, 0.41379000000000143, 0.653249999999999, 1.6945500000000009, 1.8099900000000009, 1.7546100000000018, 1.2062699999999973, 1.224600000000001, 2.3006100000000016, 1.5096899999999995, 1.0584600000000002, 1.4028299999999985, 1.5666299999999977, 1.5104700000000002, 1.6894800000000014, 2.105609999999999, 2.1332999999999993, 2.288520000000003, 1.9893899999999975, 1.5284100000000005, 1.7280900000000026, 1.7608500000000018, 1.4652300000000005, 1.3646100000000008, 1.7604600000000015, 2.7892800000000015, 1.168440000000003, 0.6411599999999997, 0.17511000000000188, 0.6840599999999988], [0.0, 0.025739999999999874, 0.05147999999999975, 0.6559800000000013, 1.6192800000000012, 2.4940500000000014, 1.872390000000001, 1.9188000000000018, 3.1437900000000023, 2.8844400000000014, 2.0346300000000017, 2.4507600000000016, 2.2074000000000034, 2.049059999999999, 2.7584700000000018, 2.864940000000002, 2.467530000000002, 1.7004000000000017, 2.2350900000000014, 1.357200000000003, 1.0292100000000022, 1.04481, 0.5120700000000022, 0.08463000000000198, -0.29444999999999855, -0.15990000000000038, 0.5206500000000021, 0.8724300000000014, 1.4348100000000026, 2.1730800000000015, 2.630940000000001, 3.1921500000000016, 2.826720000000002, 2.0658300000000005, 2.095860000000001, 2.3548200000000015, 2.5876500000000013, 2.1656700000000013, 2.2386000000000017, 2.606370000000002, 2.187510000000003, 1.1423099999999997, 1.345890000000003, 1.8431400000000009, 1.8123300000000007, 1.5081300000000037, 1.5155400000000017, 1.5057900000000004, 1.7635799999999995, 2.496000000000002, 1.8591300000000024, 2.2350900000000022, 2.4394500000000017, 1.7885400000000038, 1.4180400000000013, 2.1609900000000026, 2.445300000000002, 2.0685600000000006, 1.9367400000000037, 1.194180000000003, 1.7780100000000008, 1.125540000000003, 1.2854400000000026, 1.0842000000000027, 2.290860000000001, 3.0977700000000015, 3.5872200000000025, 4.421820000000002, 4.689750000000002, 4.349280000000002, 4.350840000000002, 2.6133900000000017, 2.0931300000000013, 1.9858800000000025, 1.976910000000001, 2.589210000000002, 1.8131100000000007, 1.337310000000001, 2.1641100000000018, 2.010450000000001, 2.6192400000000013, 2.624310000000002], [0.0, 0.24452999999999925, 0.6208799999999997, 0.9480899999999997, 1.3478399999999984, 2.4761100000000007, 2.818919999999999, 2.4780599999999997, 1.8193499999999947, 2.194139999999999, 2.251469999999997, 2.391479999999998, 1.4137499999999967, 1.308059999999995, 1.9671599999999954, 2.56893, 2.6426399999999983, 2.063879999999997, 1.589249999999999, 1.1910599999999985, 1.1707800000000055, 1.5666299999999982, 2.1582599999999967, 3.1683599999999976, 3.533009999999998, 3.6773099999999985, 4.411679999999999, 3.5142899999999972, 3.1473000000000004, 3.02094, 2.065829999999997, 3.430829999999999, 2.792789999999998, 2.683590000000002, 3.8044499999999983, 3.327090000000002, 3.489719999999998, 2.710890000000001, 2.0471099999999933, 1.7397899999999935, 1.0459799999999957, 1.3025999999999969, 1.75149, 3.276389999999997, 3.20268, 3.6995399999999976, 4.0883699999999985, 4.052879999999999, 4.144529999999999, 3.0525299999999995, 2.665649999999999, 2.2362599999999966, 2.958539999999997, 4.2849299999999975, 3.608279999999997, 3.895319999999998, 3.5899499999999986, 3.685889999999998, 3.082169999999998, 2.8516799999999987, 2.479229999999997, 1.558050000000001, 2.017079999999996, 3.3949499999999992, 2.76471, 3.474899999999999, 4.291169999999998, 3.618809999999999, 2.338049999999998, 2.5931099999999976, 2.54982, 2.4156599999999995, 3.1219499999999973, 2.6106599999999984, 2.9425500000000007, 3.294719999999998, 2.8341299999999974, 1.7604599999999961, 1.3856699999999966, 0.7788299999999948, 1.3193699999999957, 1.0452000000000012], [0.0, 0.2632499999999993, 0.5140200000000004, 1.0572899999999996, 1.3025999999999995, 1.8127200000000023, 1.75656, 2.261609999999999, 2.2580999999999998, 1.5303600000000013, 1.4917500000000028, 2.0701200000000015, 1.5248999999999993, 1.9406399999999997, 1.5713100000000009, 1.5720900000000029, 2.397330000000002, 1.5272400000000026, 1.6707600000000005, 1.587689999999999, 1.7035200000000015, 1.5865199999999997, 1.4773200000000024, 0.9087000000000016, 0.7636199999999997, 0.09437999999999902, 0.2332200000000002, 0.3732299999999995, 0.6536400000000002, 1.9402499999999998, 1.983150000000001, 2.224560000000002, 1.5483000000000002, 1.1992500000000006, 1.19535, 1.2741299999999982, 1.7222399999999998, 2.1126300000000002, 1.5635100000000008, 1.5092999999999996, 1.661400000000004, 1.8813600000000004, 1.25229, 1.1653200000000008, 0.859559999999999, 0.6329699999999985, 0.9519900000000001, 1.1033099999999987, 0.790139999999999, 1.3135199999999991, 1.2351299999999998, 1.6493099999999976, 0.6641699999999995, 0.5124599999999986, 2.2830599999999994, 2.26356, 2.4191699999999963, 2.5392900000000034, 1.7752800000000013, 1.7183400000000009, 1.2245999999999988, 1.2784199999999997, 0.5877299999999996, 1.1645400000000006, 1.4823899999999983, 2.006160000000002, 2.64576, 2.6519999999999997, 2.7740700000000027, 2.399280000000002, 1.7908799999999991, 1.5880799999999988, 1.6914300000000009, 1.6984499999999985, 1.2733499999999993, 0.9086999999999992, 1.15128, 0.8291400000000002, 0.92859, 1.861860000000001, 1.7296500000000004, 1.44651], [0.0, -0.7086300000000003, -0.6618300000000006, 0.017549999999999732, -0.030030000000000667, 0.16809000000000052, 0.9391200000000006, 1.5978300000000005, 0.8611200000000003, 0.8938800000000006, 0.6033299999999997, 0.7796099999999994, -0.04913999999999907, 0.0955499999999998, 0.38961, 0.07448999999999928, 0.06239999999999868, 0.5366400000000003, 0.3872699999999998, 0.010530000000001483, 0.7589400000000008, 0.4972499999999992, 0.7137000000000024, 0.35607000000000033, 0.04290000000000016, -0.41807999999999956, -0.6953699999999987, -0.5541900000000008, -0.3545100000000001, -0.49217999999999873, -0.5545800000000001, -0.010919999999999375, 0.8763300000000005, 0.8072999999999997, 0.8170500000000003, 0.48945000000000083, 0.49920000000000064, 0.9129900000000004, 0.0627899999999999, -0.26090999999999887, -0.0011699999999998933, -0.17666999999999855, -0.08541000000000021, -0.4461599999999992, -0.5428799999999989, -0.29990999999999746, -0.326819999999999, -0.29757000000000056, 0.011699999999999156, -0.8486399999999961, -0.7390499999999993, -0.8778899999999998, -1.234350000000001, -1.2148500000000002, -0.04524000000000106, 0.40481999999999974, 0.7710299999999998, 0.67119, 0.14079000000000041, -0.2979599999999998, -0.47423999999999866, -0.48360000000000114, -0.8104199999999988, -1.2916800000000035, -0.7706399999999971, -0.18914999999999904, 0.12051000000000012, 0.04952999999999963, -0.235169999999997, -0.22463999999999973, -0.27026999999999934, -0.47618999999999834, 0.035100000000000575, 0.10100999999999938, -0.7550399999999988, -1.006200000000002, -0.47969999999999935, -0.19655999999999874, -0.210599999999999, -0.21449999999999947, -0.0019499999999998963, -0.19460999999999906], [0.0, -0.5171399999999993, 0.09516000000000091, 0.963300000000003, 1.4433900000000004, 1.223430000000001, 1.140360000000003, 1.3462800000000024, 1.1325600000000016, 1.395809999999999, 1.2351300000000016, 1.336530000000001, 2.056080000000001, 1.7819099999999994, 1.6715399999999998, 1.9184100000000015, 2.278770000000001, 1.3548600000000004, 0.9297600000000014, 0.7183799999999999, 0.7472399999999991, 1.4121899999999998, 1.5206100000000013, 1.6633499999999999, 1.0896600000000034, 0.732030000000001, 0.7316399999999993, 0.6427200000000027, 0.7008300000000022, 0.628290000000001, 1.3275599999999996, 1.669589999999999, 0.8700900000000024, 0.20709000000000077, 0.3435900000000014, 1.1582999999999997, 0.7273500000000014, 1.0572900000000023, 1.5592199999999994, 1.3158600000000011, 1.2507300000000017, 0.9590099999999998, 0.9098700000000003, 1.313130000000001, 1.7078100000000003, 0.45786000000000093, 0.8525400000000009, 1.7230200000000004, 1.5837900000000005, 1.172340000000001, 0.9792899999999999, 1.3092300000000003, 0.2379000000000009, 0.8182200000000012, 1.0561200000000008, 1.201200000000001, 2.40084, 2.4386700000000032, 2.2670700000000026, 1.7514899999999995, 1.0834200000000012, 1.0756200000000011, 0.6294600000000002, 0.5967000000000003, 0.8033999999999991, 1.7140500000000016, 1.6477500000000007, 1.6945500000000018, 1.5830099999999998, 1.6313700000000009, 1.7803499999999994, 1.5096900000000018, 2.1157500000000025, 2.2054500000000004, 1.5291900000000016, 1.2335700000000012, 1.28817, 0.3841500000000011, 1.2686700000000002, 2.0361900000000004, 2.1812700000000036, 1.3712400000000011], [0.0, 0.5346899999999968, 0.1673100000000005, 0.6797699999999942, 1.238249999999999, 0.6212699999999955, 0.7554299999999916, 1.6196699999999975, 1.1754599999999966, 1.951949999999996, 0.9395099999999985, 0.8868599999999951, 0.3876599999999977, 0.5479499999999913, 1.349399999999993, 0.9831899999999933, 1.2694499999999982, 0.8997299999999946, 0.7281299999999895, 0.392339999999999, 1.1965199999999956, 0.7133099999999946, 1.2674999999999943, 1.156349999999997, 0.35060999999999964, 0.23282999999999188, 0.3529499999999963, 0.7168199999999993, 0.5545799999999979, 0.14624999999999755, 0.33968999999999117, 0.3591899999999981, -0.11388000000000531, 0.748019999999995, 0.9586199999999963, 0.391949999999996, 0.8728199999999964, 0.5849999999999982, 0.5990399999999969, 0.8459099999999955, 1.4071199999999942, 0.7425599999999974, 1.013999999999994, 0.4169099999999979, 0.8997299999999955, 0.27221999999999724, 0.1302599999999936, 0.33773999999999127, 0.8267999999999924, 0.4325099999999935, 0.24725999999999537, 1.2885599999999937, 0.1910999999999916, 0.04328999999999095, 0.665729999999999, 1.635659999999997, 1.7538299999999958, 1.0147799999999938, 1.4699099999999978, 0.6376499999999972, 0.4418699999999909, 0.5713499999999989, 0.18836999999999549, -0.12792000000000225, 0.9309299999999965, 1.5709199999999974, 1.9741799999999956, 1.434419999999995, 1.6964999999999981, 1.3727999999999976, 1.1013599999999961, 0.8509799999999972, 0.7967699999999951, 0.7909199999999972, 0.6013800000000016, 0.5787599999999928, 0.6899099999999967, 0.9223499999999945, 1.1212499999999936, 1.1126699999999907, 0.9742199999999945, 1.1138399999999917], [0.0, -0.21684000000000103, 0.04679999999999873, 0.21644999999999925, 0.3252599999999999, 0.3439799999999997, 0.5307899999999997, 1.25112, 0.6407699999999996, 0.1637999999999996, -0.2769000000000006, 1.0218000000000014, 0.5631600000000007, 0.7597200000000005, 0.38375999999999927, 0.454349999999999, 0.5631600000000002, -0.292890000000001, -0.4375799999999992, -0.4859400000000007, 0.1914900000000005, 0.1606799999999995, 0.9944999999999995, 0.6676799999999996, 0.007799999999999363, 0.024569999999999093, 0.11075999999999941, -0.5729099999999998, -0.7324199999999996, -0.7850700000000006, -0.61815, 0.3131699999999994, -0.47580000000000044, -0.52962, -0.4469400000000001, -0.7316400000000005, -0.4695600000000002, -0.3034200000000009, -0.31394999999999995, 0.33578999999999953, 0.7698599999999997, 0.9305399999999999, 1.1684400000000001, 0.6286799999999998, 0.05225999999999975, 0.22424999999999928, -0.2375099999999999, 0.3151199999999993, 0.23633999999999966, -0.06552000000000047, -0.5187000000000002, 0.8193899999999995, 0.09164999999999912, -0.38532000000000033, 0.007019999999999027, 0.2913300000000002, 0.6938099999999996, 0.24647999999999937, -0.359970000000001, -0.6107400000000003, -0.28158000000000016, 0.23282999999999954, -0.6871799999999997, 0.14273999999999987, -0.03588000000000169, 0.10022999999999915, -0.3357899999999998, -0.5615999999999999, 0.5261100000000001, 0.2137199999999997, -0.5389799999999998, -0.24804000000000137, 0.35373, 0.21527999999999936, 0.48476999999999937, 0.5471699999999998, 0.3162899999999993, -0.15443999999999936, -0.3045900000000026, 0.12947999999999937, -0.32877, 0.16106999999999994], [0.0, 0.6130799999999994, 0.7897500000000007, 0.11270999999999898, -0.17003999999999864, 0.06863999999999826, 0.3595799999999998, 0.10764000000000018, 0.35061000000000053, 0.22775999999999996, 0.14781000000000066, 0.43679999999999963, -0.2675399999999999, -0.7683, -0.686399999999999, -1.2129000000000008, -0.17472, 0.4878899999999988, -0.32994000000000057, 0.003119999999997569, 0.011310000000000153, 0.3931200000000006, -0.1657500000000014, -0.8755499999999996, -2.2647299999999997, -2.347799999999999, -2.3407800000000027, -2.1110699999999993, -2.2959300000000016, -2.1165300000000014, -1.2472199999999969, -0.9531599999999996, -1.5494700000000035, -1.3096199999999985, -2.004600000000002, -1.4266199999999984, -1.1150099999999976, -1.2043199999999996, -1.4621099999999982, -1.023359999999999, -0.6598800000000002, -0.42783000000000104, -0.10295999999999927, -0.8517599999999992, -0.9231300000000022, -0.9987900000000001, -1.290119999999999, -1.3240500000000028, -0.98475, -1.8349500000000005, -1.5050100000000017, -1.162590000000003, -0.7374900000000011, -0.2811900000000005, -0.5327400000000009, -1.027260000000001, -0.9543300000000006, -1.7900999999999998, -1.7565600000000017, -2.2986600000000004, -1.8864300000000016, -1.201590000000003, -1.4601599999999988, -1.0358400000000016, -0.5534099999999995, 0.04368000000000083, 0.5311799999999989, 0.18408000000000047, 0.5229900000000014, -0.06396000000000135, -1.6391700000000005, -1.8170100000000002, -2.2405499999999967, -2.3329800000000005, -2.1418799999999982, -2.055299999999999, -1.7787900000000008, -1.4878500000000026, -0.7940400000000012, -0.922740000000001, -0.33812999999999915, -0.7878000000000016], [0.0, -0.20865000000000045, -0.5276699999999988, -0.22542000000000062, 0.6587099999999997, 1.3962000000000008, 0.9515999999999993, 1.0533900000000025, 1.1356800000000007, 1.2487800000000013, 1.0709400000000016, 1.166490000000001, 0.5920200000000004, 0.7390500000000015, 1.0877100000000004, 0.7140899999999999, 0.4044300000000012, 0.7569900000000012, 0.14118000000000208, -0.6516899999999981, -0.9102600000000005, 0.3630900000000008, 2.5092600000000016, 2.4425700000000012, 2.1645000000000008, 2.146560000000001, 1.2140700000000006, 1.2047100000000013, -0.4266599999999947, -0.3057599999999949, 0.803400000000001, 0.4208100000000008, 0.7125299999999994, 0.39779999999999993, 0.0963299999999998, -0.16535999999999795, 0.34476000000000107, 0.5736900000000009, 0.24375000000000147, -0.20747999999999855, -0.14195999999999698, 0.8143200000000004, 0.8845200000000013, 0.7983300000000013, 0.7608900000000001, 1.427010000000001, 1.0596300000000023, 1.0580700000000005, 1.1856000000000013, 0.6614400000000005, 0.25506000000000073, 0.8934899999999997, 0.69849, 0.645449999999999, 0.13532999999999906, 1.217190000000002, 2.5084800000000005, 2.2733100000000013, 1.5693600000000023, 1.0210200000000007, 0.9083100000000013, -1.0288199999999983, -0.3689399999999994, -0.2230800000000026, -0.3989699999999985, -0.3396899999999965, 0.1680900000000003, -0.36347999999999514, 0.34281000000000117, 0.3467100000000005, 0.8408399999999994, 1.1388000000000016, 1.0658700000000016, 0.5140200000000013, 2.478450000000001, 2.113410000000002, 2.487810000000002, 2.2865700000000007, 2.6442000000000023, 1.879800000000001, 1.5561000000000016, 0.9578400000000011], [0.0, -0.845519999999996, -0.11856000000000222, -0.06941999999999648, 0.4781399999999998, -0.07292999999999861, -0.16418999999999784, -0.2690999999999999, -0.323310000000002, -0.43952999999999776, -0.2484300000000017, 0.3053700000000026, 0.40638000000000574, 0.28743000000000407, 0.33227999999999813, 1.2885600000000004, 0.8962199999999996, 0.2581800000000012, 0.7636199999999977, 1.5674099999999975, 1.215629999999999, 1.2027599999999956, 0.8673599999999997, 0.2628600000000043, -0.8022300000000007, -2.0689499999999983, -2.1336899999999943, -2.8099500000000015, -2.6913899999999993, -2.6032499999999956, -2.4870299999999954, -2.1804899999999945, -1.8798000000000012, -1.3053300000000032, -1.2515100000000041, -0.9051899999999948, -0.7534799999999962, -1.047930000000001, -1.5872999999999946, -0.9012899999999977, 0.07175999999999494, -0.6512999999999973, -0.2784600000000035, -0.01676999999999751, -0.8338199999999985, -0.8603400000000034, -1.7823000000000029, -1.2596999999999978, 0.08541000000000576, -1.1239799999999924, -0.8856899999999994, -0.9102599999999947, -0.5900699999999981, -0.5393700000000008, -0.8548799999999979, -0.181350000000001, -0.26051999999999786, -0.5787600000000035, -0.36465000000000103, -0.579539999999998, -0.7835100000000068, -0.7651799999999964, -0.7207200000000009, -0.6848400000000039, -0.4059899999999992, -0.27105000000000157, -0.6723599999999905, -0.8548800000000023, -1.038180000000005, -1.0744500000000023, -1.102139999999995, -1.8333899999999836, -1.4355899999999968, -1.3907399999999992, -0.5350799999999909, -0.05927999999999667, -0.11231999999999598, -0.05381999999999554, -0.16731000000000318, -0.2125500000000038, 0.4293899999999997, 0.7975500000000029], [0.0, 0.18057000000000023, 0.012869999999999826, 0.40677000000000096, 0.08775000000000033, 0.17199000000000036, 0.4746299999999999, 0.13454999999999973, 0.44771999999999956, 0.2999099999999998, -0.06396000000000004, 0.3057599999999998, 0.4867200000000008, 1.0865400000000023, 0.927420000000001, 1.0826400000000003, 1.3318499999999998, 2.117700000000002, 1.6980599999999992, 1.0077600000000007, 0.382200000000001, 0.9090900000000011, 1.26984, 1.2339600000000006, 0.3428100000000007, -0.9278099999999995, -0.80262, -0.7643999999999997, -1.0342799999999999, -0.9909899999999999, -0.51207, -0.8794500000000004, -0.1579499999999999, -0.06006000000000053, -0.2694899999999999, -0.5889, 0.018719999999999792, 0.3022499999999987, -0.22697999999999977, -0.03978000000000034, -0.07526999999999959, 0.32565000000000033, 0.6497399999999998, -0.20747999999999941, 0.050309999999999855, -0.2983499999999998, -0.3638699999999995, 0.7608899999999996, -0.21060000000000112, -0.09282000000000004, -0.5768099999999999, 0.4797000000000001, 0.32330999999999954, 0.02729999999999988, 0.34241999999999984, 0.8735999999999997, 1.535820000000001, 1.0147799999999998, 0.4711200000000004, 0.3490500000000004, 0.25388999999999995, -0.04094999999999993, 0.5440500000000003, -0.3876599999999998, 0.9016799999999996, -0.042119999999999214, 0.0479700000000004, 0.14702999999999966, 0.5171400000000005, 0.08307000000000031, 0.2343900000000006, 0.47775000000000023, 0.5873400000000001, 0.04875000000000046, 0.4945200000000004, 0.6836699999999992, 0.9824099999999996, 1.494870000000001, 1.2168000000000019, 0.6185399999999995, 0.583439999999999, 0.5354699999999993], [0.0, -0.2800199999999986, 0.4360199999999974, 0.19655999999999452, 0.16379999999999395, 0.06941999999999471, 0.2172299999999936, 0.3080999999999916, 0.12791999999999515, -0.4574700000000105, -1.5525900000000092, -1.92699, -0.9266400000000017, -0.03237000000001089, -0.2160600000000068, -0.23790000000000422, 0.4239299999999977, 0.8143199999999937, 0.1010099999999925, -0.7472400000000041, 0.09710999999999803, 0.329939999999997, -0.2527200000000098, -0.7593300000000074, -0.8767200000000077, -1.8918900000000018, -1.3887900000000108, -0.8057400000000046, -1.1727300000000058, -0.9231300000000058, -0.937170000000001, -1.1310000000000082, -0.6513000000000071, -0.7538700000000054, -0.7577700000000069, -0.12870000000000914, 0.018329999999998847, 0.14039999999999608, 0.208649999999996, 0.04367999999999217, -0.09087000000000511, -0.43095000000000017, -0.10023000000000515, -0.2671500000000062, -0.07371000000000816, -1.1965200000000022, -1.2678899999999995, -0.7655700000000047, -0.273390000000008, -0.8361600000000058, -1.0572900000000063, -0.6825000000000099, -0.3307200000000057, -0.3950700000000049, -0.8661900000000067, -0.11934000000000022, 0.6169799999999959, 0.3736199999999963, 0.24491999999998804, 0.38726999999999023, 0.3451499999999905, 0.7452899999999927, 0.4013099999999934, -0.4067700000000052, -0.35334000000000465, -0.7971600000000034, -0.5822700000000047, 0.07994999999999397, -0.12129000000000545, -0.49569000000000507, -0.39468000000000725, -0.88218, -1.0682100000000068, -1.2335700000000056, -1.1941800000000002, -1.6766100000000002, -1.4539200000000037, -0.9332700000000038, -0.7023900000000038, -0.84084, -0.32292000000000254, 0.0893099999999949], [0.0, 0.28080000000000016, -0.07683000000000062, -0.08424000000000009, -0.1638000000000004, 0.21488999999999936, 0.6754799999999996, 0.4032599999999994, 0.24179999999999957, 0.1977299999999993, 1.3704599999999998, 1.7093700000000005, 1.6676400000000002, 1.0990199999999997, 1.688699999999999, 2.352090000000001, 2.060369999999999, 2.0931299999999995, 1.4831699999999994, 0.76908, 1.6867499999999995, 1.8712199999999997, 0.8700899999999991, 0.7047299999999994, 0.43601999999999985, 0.3603599999999991, 0.3876600000000008, 0.47579999999999967, -0.17276999999999942, -0.3022500000000017, 0.0011700000000005595, 0.43328999999999895, 0.5171399999999999, 0.18446999999999902, 0.06317999999999957, 0.17472000000000043, 1.7121, 1.83066, 1.84275, 1.3427699999999991, 0.9839699999999993, 1.1387999999999994, 1.6457999999999997, 2.1695699999999993, 1.7011799999999988, 0.2882099999999985, 0.06083999999999978, 0.44381999999999955, 0.15405000000000024, 0.32487, 0.22737000000000007, 0.5518499999999995, 1.0494899999999996, 0.9714899999999994, 1.1204699999999994, 2.0724599999999995, 2.09937, 2.783429999999999, 2.757299999999999, 2.0045999999999995, 2.0205899999999986, 1.958970000000001, 1.681680000000001, 1.3919099999999998, 1.5724799999999999, 1.1169599999999995, 0.7047300000000004, 0.9356100000000003, 1.0218000000000003, 0.17939999999999823, 0.3166800000000003, 1.0042499999999999, 0.7967699999999985, 1.0338899999999993, 1.4991599999999992, 1.7046899999999998, 2.35092, 3.11454, 3.2604000000000024, 2.6594100000000003, 1.7214599999999998, 2.2421100000000003], [0.0, 0.1251900000000008, 0.299909999999999, 0.77688, 0.6399900000000001, 0.005850000000000133, -0.24452999999999836, 0.2531100000000006, 0.08345999999999987, -0.06396000000000135, -0.6372599999999986, -0.8919300000000003, -0.5108999999999986, -0.016380000000000283, 0.5994300000000008, 1.1707800000000004, 1.189890000000001, 1.5229500000000007, 1.8209100000000003, 1.1091600000000004, 0.09984000000000015, 0.9625200000000009, 0.6302400000000004, 0.2979599999999998, -0.013649999999999052, -0.1489799999999999, 0.40559999999999996, -0.31044000000000027, -0.7215000000000025, -0.15872999999999848, -0.2511599999999996, 0.29094000000000153, 0.44030999999999954, 0.022230000000001526, -0.4824299999999986, -0.026130000000000875, -0.03197999999999923, 0.2293200000000004, 0.730080000000001, 0.7967700000000011, 0.8669700000000007, 0.5331300000000001, 1.42545, 0.83148, 0.0054600000000004645, -0.21411000000000202, -0.3954599999999995, -0.20435999999999854, 0.7070700000000019, 0.13103999999999894, -0.17939999999999845, -0.03665999999999747, 0.8884200000000002, 0.38180999999999865, 0.10881000000000007, 0.31706999999999885, 0.2753399999999999, 0.7304700000000015, 0.82056, 0.6996600000000004, 0.8572200000000012, 0.42275999999999936, 0.17978999999999812, 0.7772700000000003, 0.6084000000000014, 0.3646500000000006, -0.15249000000000157, 0.42977999999999916, 0.359970000000001, -0.07370999999999994, 0.09555000000000113, -0.09359999999999857, -0.031199999999998784, 0.08306999999999909, 0.5417100000000001, 1.0799100000000006, 0.5526300000000004, 1.2659400000000005, 0.9098700000000005, 0.69771, 1.1177400000000013, 1.212120000000001], [0.0, -0.1934400000000005, 0.11309999999999776, -0.0011699999999998933, -0.7593299999999994, -0.37245000000000084, -0.6973200000000004, -0.516359999999999, -2.2565400000000015, -1.92504, -1.3930800000000003, -0.723450000000001, -1.036230000000001, -0.33267000000000024, 0.07019999999999982, 0.6119100000000003, 1.5206099999999996, 1.5377700000000005, 0.7846799999999998, 0.5077800000000001, -0.6497400000000004, -0.30810000000000093, 0.3326699999999999, 0.8989499999999997, 0.4457699999999991, 1.0623599999999997, 0.17588999999999988, -0.6473999999999989, -0.6263400000000032, -1.5330900000000018, -0.8232899999999983, -1.0713300000000028, -1.1735099999999998, -0.5350800000000004, -1.5061799999999992, -0.9434100000000019, -0.7550399999999997, 0.09906000000000015, 0.7936500000000003, 1.5241200000000004, 1.0853699999999997, 1.1684400000000001, 0.9531599999999998, 1.1719499999999996, -0.20435999999999988, -1.2117300000000033, -1.81155, -1.508520000000003, -1.3131299999999997, -0.14390999999999932, 0.04328999999999872, 0.45708000000000004, 0.25466999999999884, -0.6856199999999997, -0.7335900000000009, -0.3950699999999978, 0.11388000000000065, -0.14937000000000178, -0.5623800000000001, -0.5604300000000029, 0.11504999999999965, 0.27066000000000034, 0.5779799999999998, 0.33968999999999994, 1.2015899999999997, 0.5147999999999994, 0.35996999999999957, 0.4520100000000006, -0.2651999999999999, -0.06435000000000146, -0.39507000000000136, -0.3291600000000001, -0.6212700000000004, -0.09087000000000045, -1.0268699999999984, -0.013259999999999827, 1.2164099999999998, 0.7721999999999998, 0.4297800000000004, 1.6036800000000002, 0.9012899999999999, 2.1348600000000006], [0.0, 0.4297800000000014, 0.39663000000000403, -0.20825999999999745, -0.5179199999999948, -0.8100299999999958, -0.43835999999999853, 0.010920000000001373, -0.1719900000000001, -0.5015399999999932, -1.4913599999999994, -0.4839899999999959, -0.7351500000000009, -0.8498099999999935, -0.7292999999999958, 0.207870000000006, 0.07839000000000151, 0.9422400000000044, 0.42861000000000127, 0.07800000000000562, -0.9898199999999928, -0.21957000000000004, -0.05342999999999609, 0.6068400000000014, 0.2987400000000018, 0.22619999999999996, 0.3463200000000066, -0.5943599999999982, -0.4504499999999938, -0.7916999999999978, -1.0483199999999915, -0.9691500000000035, -1.876289999999993, -1.2823199999999924, -0.44615999999999634, -0.941849999999997, -1.306499999999998, -0.5042699999999938, -1.0104899999999946, -0.1645799999999955, 0.39233999999999947, 0.5935800000000029, 1.006200000000001, 0.5120700000000031, 0.3677699999999997, -0.09749999999999659, -1.173509999999994, -0.640769999999999, -0.8786699999999978, -0.8139300000000027, 0.12012000000000089, -0.7027799999999917, -1.3755300000000004, -1.2815399999999944, -0.9235200000000052, -0.9710999999999954, -1.1883299999999997, -0.32330999999999666, 0.23634000000000288, 0.91065, 0.423540000000004, 1.2928500000000027, 1.260870000000006, 0.8420100000000064, 0.9399000000000028, 0.749580000000003, 0.8260199999999984, 0.0054600000000002424, 0.45162000000000235, 0.4941300000000064, 0.38220000000000187, 0.5865600000000022, 0.5826600000000033, 0.2145000000000059, -0.15482999999999603, 0.7242300000000035, 1.111890000000003, 1.2101700000000042, 0.5292300000000036, 1.0752300000000012, 1.1481600000000012, 1.3494000000000033], [0.0, -0.05381999999999776, 1.2456600000000024, 1.454310000000005, 0.5491200000000045, 1.8965700000000039, 1.699620000000005, 1.9808100000000042, 1.0362300000000004, 0.6977100000000018, 0.7784400000000005, 1.5288000000000073, 2.2315800000000063, 2.6473200000000023, 2.3446800000000003, 2.9620500000000023, 3.391050000000001, 4.427669999999997, 2.510040000000001, 1.472250000000001, 0.6290700000000029, 1.017900000000003, 2.3259600000000056, 1.8907200000000028, 2.4901500000000043, 3.2486999999999995, 2.77719, 2.798250000000004, 2.86494, 2.4375, 2.211300000000003, 2.3657400000000024, 1.8950100000000039, 1.2156300000000055, 0.8611200000000052, 1.0799100000000033, 0.5522400000000018, 0.7550400000000048, 1.121640000000003, 1.3158600000000054, 1.5631200000000034, 1.6727100000000028, 2.4472500000000013, 1.865760000000001, 0.3849300000000029, -0.06200999999999768, 0.4524000000000026, 1.5662400000000052, 1.620840000000004, 1.3646100000000028, 0.32682000000000144, 0.5986500000000035, 0.47229000000000365, 1.229280000000003, 0.8377200000000007, 1.1766300000000045, 1.5323099999999996, 2.3286900000000044, 1.1446500000000028, 1.380210000000001, 1.8517200000000023, 1.2987000000000009, 1.405560000000002, 0.42705000000000193, 1.3583700000000027, 1.4157000000000008, 2.723760000000003, 3.199560000000007, 2.264730000000002, 1.9277700000000009, 1.9160700000000046, 1.86927, 0.9913800000000037, 0.4707300000000034, 1.0592400000000033, 2.094300000000005, 2.0779200000000033, 2.313870000000006, 2.1009300000000035, 2.0970300000000055, 2.3072399999999993, 3.0927000000000007], [0.0, 1.2058800000000032, 1.3884000000000012, 1.5260699999999972, 0.1770599999999991, 0.3104399999999985, 0.2601300000000002, 0.33032999999999735, -0.5908500000000005, -0.7421700000000011, -0.6349200000000026, -0.5518500000000008, -0.3927299999999998, 0.35606999999999944, 0.6072300000000004, 0.5931899999999963, 1.1957399999999971, 1.9269899999999924, 0.8739899999999992, 0.5405399999999969, 0.12323999999999691, -0.6540300000000019, -0.6435000000000017, -0.6329700000000018, -0.12675000000000214, 1.8131099999999947, 2.1297899999999994, 0.8985600000000007, 0.6310200000000017, -0.42744000000000026, -0.5846100000000019, -0.26832000000000145, -0.04875000000000096, -1.5171000000000012, -0.9016800000000014, -1.0619700000000012, -0.10842000000000329, 0.08579999999999988, 0.5222099999999998, 1.1075999999999966, 1.2222599999999986, 1.2074399999999992, 0.9044099999999999, 1.4024399999999968, 0.11075999999999864, -0.3884400000000028, -1.6637399999999993, -1.5295800000000013, -0.9621300000000002, -0.47502, -0.7507500000000011, -0.26130000000000275, -0.13688999999999973, -0.24531000000000236, -0.7039500000000016, -0.7460700000000009, -0.9886500000000007, -0.5608200000000017, -1.199250000000002, -0.662220000000002, -0.49920000000000164, -0.4040400000000006, -0.11505000000000098, 0.732809999999998, -0.05810999999999966, 0.16262999999999916, -0.23829000000000033, -0.16575000000000184, -0.05850000000000222, 0.4192500000000008, 0.007019999999999804, -0.940680000000002, -1.818960000000001, -1.3478400000000013, -1.6317600000000008, -1.3642200000000004, -1.2421500000000016, -0.6388199999999997, -0.12129000000000123, -0.11973000000000344, 0.3287700000000022, 1.1508899999999995], [0.0, 1.1844299999999999, 0.5799299999999997, 0.24726000000000029, 0.73983, 1.70859, 1.7823000000000009, 2.1804899999999994, 2.4141, 1.4566500000000013, 1.0619700000000005, 0.88218, 0.6130799999999992, 1.0689899999999999, 2.07714, 2.3926500000000015, 2.3762699999999968, 2.79591, 2.2261199999999963, 2.11614, 2.251860000000002, 1.9749600000000014, 2.2339200000000026, 2.206230000000002, 2.288910000000002, 3.0837299999999974, 3.0864600000000033, 3.2877000000000014, 2.79669, 2.4839099999999994, 2.8622099999999993, 2.33298, 1.1879400000000002, 1.2663300000000006, 0.40872000000000014, 0.5471699999999999, 1.39464, 1.766310000000001, 1.644630000000002, 1.48746, 0.7020000000000003, 0.62595, 1.1025300000000011, 0.7581600000000006, 0.5257199999999993, 0.15990000000000107, 0.8778900000000002, 1.1637599999999995, 1.9897799999999974, 2.1317400000000006, 1.364610000000001, 1.6715400000000007, 1.1731200000000002, 1.3345800000000014, 1.0253099999999995, 2.1680100000000007, 2.584529999999999, 2.0163000000000024, 1.7858100000000008, 1.65282, 1.9129500000000002, 2.36379, 3.00963, 1.9063199999999985, 1.4469, 1.1996400000000007, 1.0303800000000005, 2.82243, 2.3158200000000018, 1.5018899999999997, 2.2210500000000017, 1.5288000000000002, 0.852929999999999, 0.9285900000000002, -0.5148000000000003, -0.23477999999999996, 0.8299199999999977, 1.47693, 1.6957199999999988, 1.7780099999999994, 2.4843000000000006, 2.2553700000000014], [0.0, 1.7156100000000007, 1.7409600000000003, 2.013959999999999, 0.9476999999999997, 0.9087000000000006, 0.6840599999999998, 0.933270000000001, 0.5740799999999998, -0.3377399999999997, -0.0366600000000003, -0.025739999999999902, 0.4621500000000005, 0.19850999999999952, 0.62556, 0.30966000000000043, 0.7246199999999996, 0.9519900000000002, 0.7218900000000013, 1.1602500000000004, 0.8693100000000004, 0.012479999999999797, 1.1973000000000016, 1.15245, 0.7257900000000006, 0.6056699999999994, 1.5081299999999995, 1.269839999999999, 1.4289600000000005, 1.682850000000002, 1.6929899999999996, 0.5374199999999993, 0.9239099999999997, 0.1345500000000004, -0.17589000000000013, -0.4106700000000001, 0.6072300000000008, 0.5538000000000005, 0.1754999999999997, 1.2983100000000007, 0.6906899999999997, 0.8178299999999994, 0.5339099999999997, -0.0011700000000001848, 0.14157000000000142, 0.010139999999998955, -0.5982600000000001, -0.3740100000000004, 0.6750899999999995, 0.30732000000000004, 0.5931899999999998, 0.3178499999999994, 0.1552199999999997, 0.008970000000000283, -0.20280000000000037, 0.4016999999999995, 0.31706999999999985, 0.6255600000000001, 0.11894999999999856, 0.14897999999999995, -0.18330000000000038, 1.2284999999999995, 1.2460499999999999, 0.2679299999999997, 0.9765600000000002, 0.9340499999999999, 0.8946599999999997, 0.8938800000000001, 0.8330400000000011, 0.9426299999999977, 1.3739700000000004, 0.5580899999999998, -0.18564000000000067, 0.1587299999999996, -0.6914699999999995, -0.4703400000000003, -0.4048200000000003, 0.8743799999999997, 0.7659600000000005, 0.6766500000000003, 1.3260000000000014, 1.7507099999999998], [0.0, -0.11699999999999922, -0.05031000000000041, 0.07020000000000004, 0.18485999999999847, 0.30966000000000005, 1.4531399999999997, 1.9000800000000007, 1.5373799999999977, 1.1072099999999983, -0.19890000000000013, 0.09671999999999958, 0.6072300000000013, 0.22659000000000007, -0.009749999999999703, 0.9469200000000002, 1.4504100000000009, 1.8739499999999987, 1.2058799999999983, 1.232789999999998, 1.0397400000000028, 1.4979900000000017, 1.7417400000000007, 2.043990000000001, 1.8478200000000002, 2.4055199999999948, 2.0728499999999963, 1.9866600000000016, 2.199209999999999, 1.436759999999998, 1.0970700000000004, 1.4043900000000014, 1.4453399999999978, 1.063139999999999, -0.07292999999999972, -0.58461, -0.16184999999999938, 0.5904599999999995, 0.6392100000000001, 0.9398999999999988, 0.8330400000000011, 0.8856900000000001, 0.8814000000000004, 0.5280599999999984, 0.47267999999999977, 0.43133999999999917, 0.8026199999999977, 0.2913299999999982, 0.6310199999999986, 0.6801599999999983, 0.6462299999999996, 1.0179, 0.17198999999999975, 0.3217500000000002, 0.18057000000000045, 0.5873400000000006, -0.1275299999999996, 0.3498299999999994, 1.0943400000000005, -0.18603000000000003, 0.5576999999999983, 1.764359999999998, 1.1934000000000005, 0.9804599999999994, 0.6895200000000021, 0.6435000000000006, 0.8716500000000003, 0.6247799999999988, 1.0986300000000002, 0.5003699999999984, 0.7257899999999995, -0.11037000000000097, -0.02847000000000044, -0.2616900000000006, -0.7838999999999998, -0.7004399999999998, -0.7854600000000002, -0.03783000000000025, 0.5756399999999986, 1.14894, 1.070160000000001, 1.4784899999999983], [0.0, 0.6173700000000004, 1.0475400000000004, 0.8170500000000007, 0.938730000000001, 1.0826400000000012, 0.16146000000000105, 0.9640800000000002, 0.17628000000000077, 0.21177000000000068, 0.8931000000000007, 0.30225000000000046, 0.033540000000001124, 0.944190000000001, -0.17862000000000022, -0.08306999999999987, 0.13455000000000095, 0.38844000000000084, 0.2694900000000011, 0.7737600000000006, 1.2546300000000006, 0.4219800000000006, 1.0381800000000012, 1.2710100000000006, 0.5440500000000008, 1.099410000000001, 0.5943600000000008, 0.8587800000000009, 1.0444200000000008, 0.6747000000000007, 1.0065900000000008, 0.5292300000000009, 0.6715800000000005, -0.36542999999999903, -0.7671299999999994, -0.44577, -0.3030300000000008, 0.17355000000000087, 0.6240000000000008, 0.500760000000001, -0.44069999999999987, 0.15210000000000012, -0.2905499999999994, -0.03392999999999868, 0.5229900000000005, 0.6286800000000007, 0.5194800000000003, 1.1501100000000006, 1.019460000000001, 0.7706400000000008, -0.7066799999999982, -0.6041099999999997, -0.7316400000000001, -0.8080799999999988, -0.10919999999999974, 0.21450000000000213, 0.3837600000000007, -0.10568999999999884, -0.08306999999999987, -0.26012999999999953, 0.14352000000000198, 0.5019300000000007, 0.3603600000000011, 0.21723000000000015, -0.36465000000000014, -0.22619999999999818, -0.030029999999999224, 0.32331000000000054, 0.22581000000000107, 0.05811000000000077, 0.1755000000000002, 0.3829800000000009, -0.31238999999999817, -0.9874799999999992, -1.2655499999999986, -1.571309999999997, -0.627119999999999, -0.5405399999999996, 0.1871999999999998, 0.9605700000000006, 0.6813300000000004, 1.4511900000000006], [0.0, 0.7776600000000001, 0.36504000000000086, 0.1848600000000008, -0.04718999999999984, -0.4843799999999986, 0.3291599999999993, 0.7558200000000005, 0.9796799999999999, 0.4001400000000002, 0.25701000000000057, -0.14937000000000034, 0.8236800000000004, 0.5569199999999997, 0.14001000000000052, 0.59982, 0.7250100000000004, 0.20943000000000012, 0.16458000000000006, -0.01442999999999972, 0.7815600000000004, 0.04992000000000052, 0.73242, 0.1813499999999998, 0.9399000000000003, 1.0857600000000005, 1.5233399999999997, 1.5436200000000002, 1.2015900000000004, 0.61581, 0.7870200000000004, 0.8217300000000002, 0.8236800000000006, 0.6224400000000009, 0.8318699999999997, -0.21411000000000135, -0.08033999999999986, -0.43289999999999906, -1.0007399999999995, -0.1287000000000006, -0.09008999999999978, -0.6957599999999992, -0.7675200000000005, -0.5456099999999994, 0.06201000000000079, 0.2297099999999997, -0.4247099999999987, -0.49529999999999996, -0.03393000000000024, -0.4200299999999998, -0.2261999999999994, -0.6824999999999989, -1.135679999999999, -0.6247800000000002, -1.037399999999999, -0.090089999999999, -0.43640999999999963, -0.02729999999999988, -0.20436000000000032, 0.10530000000000028, 0.09867000000000048, 1.3220999999999998, 0.8735999999999998, 0.13299000000000072, -0.3116099999999996, -0.5409300000000002, -0.4075499999999991, -0.40208999999999906, 0.49452000000000007, -0.6239999999999989, -0.3034199999999997, 0.13026000000000015, -0.8529299999999992, -1.4780999999999995, -1.5689699999999984, -0.9188400000000013, -1.2043200000000005, -0.69108, -1.0104899999999999, 0.05459999999999954, 0.43835999999999975, 0.6871800000000002], [0.0, 0.56862, 0.85995, 1.3669499999999997, 1.2390299999999999, 0.4750200000000008, 1.1380200000000003, 1.3755300000000001, 0.9703199999999998, 0.28664999999999985, 0.5631599999999999, 0.2823599999999997, -0.03198000000000012, -0.3693299999999997, 0.08111999999999897, 0.16067999999999905, 0.3626999999999997, 0.8930999999999999, 1.8006299999999995, 1.4207700000000003, 1.10175, 1.3494, 1.63137, 1.34901, 0.6676799999999994, 0.7047299999999997, 1.5440099999999997, 0.7975500000000003, 1.0880999999999998, 0.7784399999999992, 1.81584, 1.49097, 0.7554300000000004, 0.7737599999999993, 0.11504999999999876, 0.5023199999999995, 0.2613000000000003, 0.7211099999999994, 0.09711000000000114, 0.7850699999999999, 0.9749999999999994, 1.6107, 1.5210000000000001, 1.4348100000000004, 1.44105, 1.39347, 0.9508199999999998, 0.9535499999999995, 0.7792199999999997, 0.69966, 0.33227999999999946, -0.18875999999999937, 0.4754100000000002, 0.34319999999999873, 0.44069999999999954, 0.508559999999999, 0.7324199999999991, 0.6501299999999995, 0.7768799999999992, 0.10958999999999941, 0.2382899999999999, 0.36465000000000036, 0.0233999999999992, -0.42158999999999947, -0.33657000000000004, -0.16302000000000127, 0.9656399999999992, 0.3584099999999987, 0.48165, 0.52338, 0.8474700000000006, 0.5693999999999998, 0.3151200000000002, 0.13416000000000028, -0.3244800000000001, -0.7176000000000002, -1.0077599999999987, -0.03705000000000114, 0.30186000000000046, 0.9036299999999999, 1.0927799999999999, 1.2179699999999996], [0.0, -0.10140000000000049, -0.5389800000000021, -0.605280000000001, -0.2609100000000003, -0.017550000000000066, -0.03432000000000057, 0.3158999999999999, 0.9613499999999999, 0.5132400000000001, 0.26130000000000037, -0.1365000000000004, 0.08306999999999942, 0.0616199999999999, 0.0019499999999996742, 0.5440500000000001, 0.6856200000000002, 0.7963799999999999, 0.7480200000000001, 0.2418000000000003, 0.5397599999999999, 0.23205000000000026, 0.7585500000000002, 0.8911500000000001, 0.99333, 0.3057600000000001, 1.0026900000000003, 1.2554100000000004, 0.9324900000000004, 1.0725000000000002, 0.7737600000000002, 0.3100499999999997, -0.1450800000000002, 0.89934, 0.08579999999999943, -0.15912000000000093, -0.6115200000000006, -0.537420000000001, -0.08307000000000098, 0.45707999999999993, 0.86229, 0.42353999999999986, 0.06239999999999957, 0.4024799999999999, 0.07214999999999983, 0.34164000000000005, -1.0877100000000008, 0.017160000000000064, -0.059280000000000665, -0.45318, -0.273, -0.5818799999999998, -0.1622400000000006, 0.23517000000000016, 0.7097999999999999, 0.6922500000000001, 0.3548999999999997, 0.29016000000000014, 0.24257999999999946, 0.16185000000000027, -0.30653999999999904, 0.2651999999999999, 1.4363700000000008, 0.1466400000000001, -0.36582000000000037, 0.5709600000000004, 0.4602000000000007, 0.8966099999999999, 1.2881700000000003, 0.8256300000000002, 0.47970000000000007, 0.3533399999999997, 0.5428799999999997, 0.6033300000000001, 0.42236999999999975, 0.7476299999999998, 0.6224400000000001, 0.15093000000000012, -0.40871999999999964, -0.03159000000000023, 0.6587100000000001, 0.42314999999999997], [0.0, 1.0670400000000009, 1.0693800000000009, 0.7250100000000012, 0.8860800000000009, -0.07019999999999882, 0.7441200000000013, 1.3653900000000012, 0.40365000000000095, 0.3237000000000005, 0.6832800000000012, 0.6349200000000005, 0.4527900000000007, -0.11348999999999965, 0.6938100000000009, 0.20163000000000086, -0.13649999999999862, 0.5218200000000008, 0.6563700000000008, 1.4258400000000018, 1.3985400000000006, 0.4044300000000006, 0.6938100000000007, 0.5772000000000005, 0.11271000000000075, 0.01053000000000115, -0.21254999999999946, 0.9340500000000007, 1.1310000000000004, 1.018680000000001, 0.8556600000000005, 1.316640000000001, 1.3423800000000006, 0.34554000000000046, 0.9129900000000005, 0.018720000000000958, -0.3248699999999993, 0.15717000000000148, -0.061229999999999785, 0.2886000000000015, 1.0389600000000008, 0.6637800000000004, 0.5311800000000008, 1.242150000000001, 1.0085400000000002, 0.8860800000000011, 1.3439400000000015, 1.6060199999999993, 1.3962000000000017, 1.6578899999999994, 1.250340000000002, 0.7140900000000011, -0.0007799999999985596, -0.090089999999999, 0.1290900000000006, 0.5694000000000008, 0.6996600000000006, 0.8010600000000011, 0.9644700000000008, 1.3396500000000013, 1.0093200000000007, 0.9309300000000008, 0.8435700000000009, -0.24570000000000047, 0.21177000000000057, -0.23282999999999876, 0.37011000000000116, 1.1532300000000015, 0.22737000000000207, 0.31629000000000074, 0.5814900000000007, 0.9746100000000008, 1.560000000000001, 0.2550600000000006, 0.48867000000000127, 0.30381000000000136, -0.27963000000000005, -0.12050999999999923, 0.680160000000001, 1.3096200000000011, 1.150110000000001, 0.8310900000000012], ...]
950911673 141.41127 17.142242 -0.529792 good 10.10 NaN 0.000000 0.137353 2.834640 1.217521 -0.059223 -0.480737 5 850022280 0.061408 5 0.313869 0.344538 0.000000 0.548422 0.80 0.000067 0.288442 90.0 16.71 0.076839 [4.5105317809069785, 4.740565355785488, 7.6527017469876455, 7.785868553485202, 8.477902613484149, 8.70196951543073, 238.48094412659879, 292.39363407058204, 299.6293416683871, 300.01300873792076, 302.5003113496958, 315.5223250233718, 319.715196092734, 322.27213211096046, 331.18950814125657, 339.93428399031507, 343.29908752350394, 343.74658799339875, 347.7602255412246, 351.9777633031545, 355.64560048787513, 364.33400961107947, 395.3672755306806, 397.1304107153819, 438.81528781963425, 469.8529204104873, 480.757165193748, 483.88633514617806, 493.42037849066816, 507.51065995273814, 512.7101654124431, 521.3500744847203, 556.3781112656699, 561.5501833632353, 579.9267693261099, 580.0819028223401, 582.0709382442463, 587.4848772624492, 619.4058107808063, 622.6688142071007, 633.4015254769105, 641.5494006991976, 654.588581057566, 660.4889205865104, 670.3034642255378, 674.4101018710179, 684.3503123086676, 684.3619123208481, 692.6963210723368, 700.9098630302435, 704.8423004928057, 711.4067740524528, 716.3272792191955, 777.9902106346, 797.9671982779653, 821.816589987522, 828.7639306158627, 883.9618885760995, 898.3997037364281, 909.5206487472334, 918.6111916260289, 946.7279544831761, 1000.4948109406945, 1018.6933300499245, 1020.8422323063646, 1025.852904234453, 1046.8987263334739, 1062.5655761176754, 1093.3285417534496, 1138.6816227094741, 1178.2026642082724, 1182.5839354754628, 1209.1491300367297, 1228.8474173874479, 1228.965517511458, 1233.4639889017137, 1234.686523518761, 1234.971157150972, 1235.0704905886098, 1235.1517240072417, 1235.2115907367709, 1235.280990809644, 1235.4034242715377, 1235.6021244801816, 1235.9072914672868, 1236.1078583445574, 1247.5131369872586, 1274.506198664471, 1300.70942617899, 1414.2970454508898, 1433.4180655287857, 1434.321299810554, 1514.3959838924263, 1514.4425172746217, 1600.0219404700408, 1629.664071595557, 1773.5468893453885, 1894.8523833880565, 1894.9808501896189, 1995.8301894191084, ...] [0.00010098434052656308, 0.00010978531449009539, 0.00010249814741957991, 0.00010292078722515053, 0.00010371320852651878, 0.00010410595370167351, 0.00010461145106556219, 0.00011119607252586061, 0.00012955846347947127, 0.00010278536777509219, 0.00010440745443182014, 0.0001213950062406873, 0.000122513862259659, 0.00011541274109555214, 0.00010364076047205507, 0.00012652563622333297, 0.00012427714851808303, 0.0001204009770861935, 0.00012910603366161395, 0.0001224974197770214, 0.00012832286234650152, 0.00011140120252266887, 0.0001249486225439308, 0.00011300718670567907, 0.00010266110759214739, 0.00011611768420456312, 0.00010882047379364546, 0.00011018822506013636, 0.0001204831720630267, 0.0001233638060957266, 0.00010991870260481198, 0.00011495147976395575, 0.00012029791951076444, 0.0001324759841208879, 0.00011511590459033188, 0.00012672475067771282, 0.00011128139732839205, 0.00012051438313823489, 0.00013241935955846408, 0.00011003054810309296, 0.00013339175891474795, 0.00011696559670528896, 0.0001194678705555977, 0.00011881855813678322, 0.00010752001813875569, 0.00011875755704928832, 0.00012285116854452075, 0.00010942575941642603, 0.00010104522827775135, 0.00010116440576325302, 0.00011260543565323663, 0.00011327445115304846, 0.00010790015682934307, 0.00011873880424963111, 0.0001037991436014705, 0.00010717999178253503, 0.00011211995522473286, 0.00012531494292328775, 0.00011809903823510517, 0.00010283588089513583, 0.00013424068272405596, 0.00013692871478091805, 0.00010614014860563367, 0.0001069075051468836, 0.00011778256839430701, 0.00010838989172843387, 0.00011395149609427558, 0.00012320520501187535, 0.00012208149296807376, 0.00011872672957388716, 0.0001349455299331152, 0.00015213099308787652, 0.00010110258516707947, 0.00014965429837015463, 0.0001371415516465766, 0.00010620925759814075, 0.0001336439670696915, 0.00018354094735965922, 0.00016434535147065132, 0.00015005045235268544, 0.00017814613916445528, 0.00014389781658416523, 0.00012719649125858304, 0.00015810808835379424, 0.00013339726880288528, 0.00021314934257408945, 0.00014476440342095137, 0.00011562486307066123, 0.00012071142266638584, 0.00014829863921576254, 0.00016716477517959795, 0.00017682259777572436, 0.0001381153546294271, 0.00015947140206797202, 0.00017367270283302305, 0.00015411010654681843, 0.0001998643048208347, 0.00020840963566751513, 0.00019311296565349543, 0.0001960570069906616, ...] [[0.0, 5.864040000000001, 5.07039, 3.420689999999999, 2.9979299999999998, 1.4429999999999987, 1.8310499999999985, 1.2776399999999992, -4.5910799999999945, 3.656249999999999, -0.18329999999999957, -1.938299999999999, 0.16964999999999808, 2.4846899999999996, 0.9999599999999995, -0.3759600000000023, 1.564680000000002, -1.28817, -5.982210000000004, -2.854410000000004, -3.5575799999999944, -6.883500000000009, -8.65877999999999, -4.1913300000000016, -3.449550000000003, -0.908700000000001, -0.43172999999999906, 2.588429999999999, 0.16028999999999405, -3.0708600000000077, 2.9737499999999994, 5.096909999999998, 5.899140000000001, 4.70574, 3.703050000000002, 4.405049999999999, -0.012869999999999493, 6.56565, 3.54432, 9.495330000000003, 7.15611, 5.416709999999998, 4.505279999999999, 6.196319999999999, -0.8346, 3.7514099999999986, 4.985759999999997, 3.7326899999999985, 3.1660199999999987, 1.9702799999999996, 2.7194700000000003, 1.216409999999998, 0.12947999999999693, 6.755190000000002, -0.17393999999999954, 0.15989999999999682, 4.796999999999999, 1.027259999999999, 2.192189999999999, 3.1882499999999996, 1.3170299999999981, -0.450450000000004, -2.0876699999999957, 1.0947299999999973, 0.870480000000001, 1.9496099999999994, 0.3369599999999986, 3.762329999999999, 5.133569999999999, 4.134, 3.9198900000000005, 2.3185499999999997, 0.8767199999999966, -0.5846099999999974, 0.6337499999999991, 4.226039999999999, -0.6052799999999983, 0.03315000000000046, 1.2990900000000007, 3.3871499999999988, 4.232279999999999, 2.9172], [0.0, 1.2752999999999988, 0.9231299999999993, 0.7682999999999995, 0.2948400000000004, -0.041340000000000265, -0.8256300000000008, -1.53621, -0.8993399999999998, -1.2195300000000016, -0.48165000000000013, 0.7316399999999998, 1.0038599999999986, -0.20475000000000065, -1.9679399999999996, -1.8992999999999998, -2.758860000000001, -1.8934499999999996, -2.6941200000000003, -3.4787999999999983, -6.058649999999995, -7.781669999999995, -9.419670000000002, -9.695010000000003, -8.928269999999992, -7.458360000000001, -5.032169999999999, -3.4499399999999967, -2.7420899999999997, -0.7082399999999984, 0.10178999999999905, 1.3170300000000008, 2.1563099999999995, 2.9093999999999984, 3.4273199999999995, 3.6870599999999976, 3.511950000000002, 3.1940999999999984, 4.7353799999999975, 4.1328299999999984, 3.4234199999999992, 3.2966699999999967, 3.46281, 2.250300000000002, 2.508869999999999, 2.872739999999999, 3.6024300000000027, 3.5645999999999995, 2.552159999999999, 1.9281600000000014, 2.02605, 2.2600499999999997, 1.3088399999999991, 0.6665099999999994, 0.6548099999999993, 0.703169999999999, 1.2600899999999995, 1.0986299999999996, 1.0280400000000005, 0.36308999999999914, 1.4593799999999992, 1.6106999999999998, 0.7936499999999994, 0.019889999999998964, 0.3697199999999995, 1.38489, 1.2086099999999997, 0.82524, 1.5490799999999993, 0.6848399999999991, 0.3225299999999995, 0.9008999999999993, 1.3809899999999993, 0.5888999999999995, 0.3962399999999989, 0.8872499999999992, 1.2323999999999997, 1.489409999999999, 0.4317299999999997, -0.6388200000000013, -1.24137, -1.3490099999999983], [0.0, 0.7417800000000043, 1.5576600000000045, 0.7168200000000025, 0.8728200000000048, -0.42821999999999694, -1.3884000000000007, -1.1407500000000006, -0.3116099999999924, 0.35451000000000166, 1.505010000000002, 1.9402500000000034, 0.9461400000000033, -0.8821799999999991, -2.4129299999999994, -3.6726300000000025, -5.145269999999996, -6.288359999999995, -6.322289999999996, -5.651099999999993, -4.935059999999994, -5.849609999999999, -7.708740000000009, -7.890480000000005, -7.4961899999999995, -5.36016, -4.0072500000000035, -2.8111199999999936, -2.1208199999999984, 0.0335400000000039, 0.5307900000000036, 1.3131300000000041, 2.856360000000003, 3.048240000000003, 3.4955700000000034, 3.667170000000003, 4.032600000000002, 3.7978200000000033, 4.929210000000003, 4.293900000000004, 4.014660000000005, 4.168320000000002, 4.7299200000000035, 4.451460000000001, 3.211650000000003, 3.354390000000002, 3.815760000000002, 3.444090000000003, 2.3649600000000035, 1.0974600000000014, 0.6341400000000048, 0.6146400000000041, 1.1239800000000026, 0.9153300000000042, 1.6290300000000026, 1.864590000000002, 1.832220000000004, 2.7553500000000026, 0.7394400000000014, 0.22308000000000083, 0.6403800000000026, 1.4180400000000024, 1.331850000000002, -0.33656999999999826, -0.5600400000000012, -0.11114999999999453, 0.7148700000000039, 0.9243000000000037, 1.426230000000003, 1.5073500000000029, 1.4235000000000038, 1.5954900000000023, 1.979640000000003, 1.1610300000000031, -0.5027099999999942, -0.5198699999999992, 0.6988800000000048, 0.06669000000000302, 1.3728000000000027, 0.31629000000000307, -0.498809999999998, -0.9071399999999974], [0.0, -0.03353999999998791, 0.5569200000000194, 0.005460000000011789, -0.27845999999999904, -1.330679999999992, -1.0596299999999879, -1.6149899999999953, -1.245659999999992, -0.5128499999999914, -0.17276999999998743, 1.3728000000000034, 1.0806900000000175, -0.01715999999998985, -0.8431799999999967, -1.3478399999999997, -2.718299999999994, -3.7822199999999953, -4.353570000000003, -5.5883099999999875, -7.919729999999978, -8.653709999999998, -9.546030000000014, -8.145929999999995, -6.429539999999992, -5.578170000000004, -2.4897599999999915, -1.209389999999992, -0.9711000000000034, -0.8170499999999876, 0.40755000000000763, 1.2873900000000065, 1.3930800000000039, 1.9390799999999988, 1.9917300000000102, 3.0384900000000092, 3.3703800000000097, 3.5131200000000096, 3.3224100000000094, 3.830970000000007, 3.6539100000000078, 3.1375500000000045, 3.358680000000003, 2.3786100000000037, 2.473380000000005, 2.1769800000000012, 2.801370000000005, 2.3634000000000084, 1.8903300000000085, 0.5947500000000083, 0.5623800000000063, 0.5959200000000067, 1.0479300000000062, -0.10919999999998353, -0.044069999999987175, 0.9703200000000072, 1.2121200000000023, 0.9824100000000122, 1.0065900000000134, 0.6384299999999978, 1.0062000000000122, 1.4667900000000023, 0.6368700000000143, 0.4485000000000099, -0.0479699999999923, 0.30966000000001337, -0.0565499999999961, 0.23049000000000852, 1.3786500000000057, 0.8997300000000106, 0.8342100000000059, 0.8100300000000091, 1.74603000000001, 1.3318500000000082, 0.6158100000000104, 0.19227000000000238, 1.214460000000006, 0.595530000000009, -0.7546499999999963, -1.2905099999999816, -0.8864699999999992, -1.427009999999994], [0.0, 1.2234300000000007, 1.9344000000000006, 1.7932200000000005, 1.4781000000000004, 0.6711900000000011, -0.3389099999999985, -0.017939999999998735, 1.02141, 1.49175, 2.2733100000000004, 2.3400000000000007, 2.234700000000001, 2.4928800000000018, 1.73706, 1.3934699999999995, 0.3541200000000011, -1.522559999999998, -4.910880000000003, -7.167810000000005, -9.379890000000003, -12.665639999999996, -14.35434000000001, -13.41561, -9.875579999999998, -6.555899999999998, -4.224869999999995, -1.986660000000002, -0.35138999999999654, 1.5795000000000012, 3.057990000000001, 3.6344100000000017, 3.911699999999996, 5.007210000000002, 5.779020000000001, 5.137859999999996, 5.405790000000001, 4.563780000000002, 5.340270000000001, 4.512299999999999, 4.575480000000002, 5.19441, 5.116020000000002, 4.049760000000003, 3.9920400000000003, 4.838730000000002, 4.74435, 3.2748300000000015, 2.7292200000000006, 2.2358700000000002, 1.5654600000000014, 2.671500000000001, 1.9971900000000014, 2.301780000000001, 2.847780000000001, 2.616510000000001, 1.3848900000000008, 1.5007200000000007, 1.23747, 1.0576800000000006, 2.4351599999999998, 2.9355300000000004, 2.1204300000000016, 1.0179000000000007, 0.5651100000000003, 1.1785800000000004, 0.9668100000000015, 0.6949800000000009, 1.8681000000000008, 1.547130000000001, 0.9317100000000009, 1.3782600000000005, 2.6278200000000003, 2.8832700000000018, 2.29164, 1.8369, 1.7674800000000013, 2.3107500000000005, 2.418000000000001, 0.8006700000000009, -0.48087000000000146, -0.7550400000000017], [0.0, 1.349400000000001, 1.4145300000000014, 1.3642199999999987, 1.6629599999999995, 1.0966800000000023, 1.0483200000000021, 0.7292999999999976, 1.1571300000000013, 1.7514899999999969, 2.4102000000000006, 3.1071299999999993, 4.227600000000001, 4.1581800000000015, 4.348500000000001, 3.572400000000001, 2.045550000000002, 0.6220500000000011, -2.390310000000002, -5.258369999999998, -8.751989999999996, -11.959350000000008, -12.985440000000011, -11.322089999999985, -8.232119999999991, -4.144529999999988, -1.1852100000000005, 0.17316000000000553, 2.1609900000000013, 2.6964600000000027, 3.5213100000000006, 4.038450000000001, 4.541940000000001, 5.715450000000001, 5.743530000000002, 5.764590000000001, 5.608590000000001, 5.146440000000002, 4.654260000000001, 4.18236, 4.454970000000001, 5.604300000000002, 5.02944, 5.2306799999999996, 4.314570000000002, 4.33914, 4.690920000000001, 3.801330000000001, 3.3809100000000005, 2.1504600000000034, 3.642990000000002, 3.562650000000001, 3.1164900000000024, 2.403179999999999, 2.484300000000001, 2.7370200000000016, 2.2046700000000024, 2.6360099999999997, 2.573220000000001, 2.280720000000003, 2.210910000000001, 2.58843, 1.9390799999999984, 1.9929000000000014, 1.75461, 1.907880000000001, 1.597049999999999, 0.846299999999998, 1.421940000000001, 2.323619999999999, 1.2881699999999983, 1.7943900000000008, 2.5572300000000006, 3.3259200000000018, 3.431610000000001, 2.935920000000001, 2.708160000000001, 3.3504899999999997, 2.1527999999999996, 0.9012899999999977, 0.9562799999999987, 0.9406800000000008], [0.0, 1.4125800000000017, 1.3989300000000016, 1.5256800000000024, 1.5393300000000039, 0.7039499999999996, 0.9250799999999983, 0.61659, 1.0955100000000009, 1.2885599999999975, 1.3334100000000013, 2.4967799999999976, 2.9971499999999995, 3.1668000000000056, 2.4254100000000003, 2.069340000000002, 0.7749299999999999, -2.3555999999999995, -5.348070000000004, -7.5071100000000035, -10.096710000000003, -12.72219, -13.61606999999999, -12.783419999999998, -8.157629999999997, -4.629299999999996, -1.20588, 0.09243000000000046, 1.9854900000000015, 3.5100000000000033, 4.5571500000000045, 4.640220000000002, 5.488469999999999, 5.199870000000002, 5.279820000000001, 4.590690000000003, 4.504110000000002, 3.9288599999999985, 4.499429999999999, 5.118360000000006, 5.214689999999998, 6.822270000000003, 6.140940000000001, 4.848869999999999, 3.994769999999999, 1.858350000000003, 2.5151100000000017, 3.4694399999999996, 3.5965799999999977, 2.7026999999999965, 3.547049999999997, 2.603249999999999, 2.506529999999998, 1.8095999999999999, 2.678910000000002, 2.0342400000000023, 2.251470000000001, 1.4387100000000002, 1.307280000000002, 1.7780099999999994, 2.37003, 1.9804200000000003, 1.7846400000000007, 0.9293700000000018, 0.16263000000000205, 0.7172099999999997, 0.5460000000000016, 0.24804000000000093, 0.48321000000000214, 0.6668999999999996, 1.7686500000000025, 2.1707399999999986, 2.185950000000001, 2.470649999999999, 2.375489999999999, 2.3587200000000044, 1.7487600000000019, 0.7273500000000017, 1.1150100000000032, 0.8404499999999977, -0.7172099999999997, 0.2379], [0.0, 0.8970000000000004, 0.20513999999999988, 0.91065, 1.32288, 0.18641999999999914, 0.49061999999999983, 0.16653000000000073, 1.5993900000000003, 1.192230000000002, 0.3997499999999985, 1.6890900000000004, 4.08408, 5.797740000000004, 6.950970000000002, 7.706009999999998, 6.005610000000001, 0.6610500000000001, -6.51729, -13.719029999999997, -19.329569999999993, -21.586500000000004, -20.408310000000007, -16.79964, -10.87632000000001, -6.209970000000004, -1.6399499999999985, 0.5904599999999989, 2.15085, 3.5821499999999995, 4.288829999999999, 5.425290000000003, 5.701020000000003, 6.118710000000001, 5.807099999999999, 6.387809999999995, 5.56179, 5.83752, 4.871489999999998, 4.4436599999999995, 4.227599999999999, 4.771650000000001, 3.672630000000002, 4.14063, 3.5864400000000023, 3.902340000000001, 3.5895600000000014, 2.9561999999999995, 1.58574, 0.8369400000000004, 1.4546999999999997, 2.5708800000000003, 1.9402500000000003, 2.0931300000000004, 2.7124500000000005, 2.3025599999999997, 1.6809000000000003, 1.70352, 1.3540800000000006, 1.7249700000000003, 1.6446300000000005, 2.446470000000001, 1.4937, 1.1115000000000002, 0.8018399999999999, 0.14858999999999845, 0.10100999999999982, 0.28547999999999907, 0.8583899999999992, 1.2589199999999994, 1.0631400000000004, 1.36656, 3.1129800000000003, 3.0143099999999983, 2.9191499999999992, 1.4742, 1.78152, 1.1684400000000004, 0.8572199999999994, -0.012869999999999049, -0.30420000000000047, -1.1793599999999995], [0.0, 0.5440500000000004, 0.999959999999998, 0.7082399999999973, 0.35645999999999844, -1.4788800000000006, -2.257710000000001, -1.5276300000000014, -0.5495100000000022, -0.10335000000000338, 0.7983299999999982, 3.3380099999999957, 6.578909999999993, 11.342369999999992, 14.326259999999994, 16.559790000000014, 13.30991999999999, 5.239650000000001, -4.9904399999999995, -12.001080000000004, -18.78513000000001, -27.890460000000004, -31.252650000000003, -26.250509999999995, -17.2146, -8.506289999999991, -2.6890500000000013, 0.9242999999999952, 3.6336299999999935, 5.592989999999997, 5.445960000000008, 6.180719999999985, 6.622979999999995, 5.919420000000002, 5.353140000000003, 3.8863500000000006, 3.8028900000000037, 3.3044700000000016, 3.535739999999993, 4.289609999999991, 4.243979999999997, 4.810649999999997, 3.4780199999999977, 3.456179999999994, 2.3965500000000035, 2.1968699999999974, 1.9238700000000013, 2.2046699999999997, 0.9660299999999986, -0.06357000000000212, 0.119339999999998, 0.9352199999999979, 0.669630000000002, 0.8903699999999999, 0.9418500000000001, 0.6840599999999979, -0.04563000000000095, -0.41457000000000055, -0.21918000000000148, 0.5007599999999988, 0.6895199999999986, 0.8069099999999976, 0.2878199999999995, 0.5783699999999978, -0.07565999999999962, -0.3350099999999985, -1.4465100000000015, -1.3209300000000008, -0.666510000000001, -0.14625000000000243, -0.19188000000000072, -0.37401000000000306, 0.5818800000000026, 2.169179999999994, 2.4211200000000033, 1.3841099999999975, 0.16379999999999661, 0.5803199999999986, 0.7874099999999977, -0.5487300000000017, -1.1161800000000015, -2.1044400000000016], [0.0, 1.5268499999999983, 1.6727099999999988, 1.2386399999999984, 0.06941999999999848, -1.9847100000000029, -1.6738800000000018, -0.9851400000000043, -0.500369999999998, 0.33422999999999936, 0.5502899999999991, 2.0350199999999985, 4.967039999999998, 8.973119999999994, 10.96407000000001, 9.388470000000009, 0.24647999999999826, -11.607180000000003, -23.09268000000004, -34.27514999999999, -39.536249999999946, -32.783790000000025, -22.184369999999983, -10.918050000000001, -1.1450400000000043, 5.643299999999998, 9.275759999999998, 10.803000000000004, 10.513620000000007, 10.149359999999994, 9.958259999999996, 9.029670000000003, 8.431019999999997, 8.918129999999996, 6.805889999999996, 5.956079999999999, 6.366359999999997, 6.393269999999996, 5.321160000000001, 4.850429999999999, 4.67103, 4.56222, 4.124639999999999, 3.731129999999999, 3.715139999999999, 2.343509999999999, 2.1332999999999984, 1.4695199999999988, -0.10686000000000195, -0.1088100000000014, 0.4367999999999965, 1.5674099999999982, 0.8498099999999978, 1.2710099999999982, 0.9863099999999996, 0.8626799999999997, 0.7694699999999988, 0.00506999999999902, 0.22580999999999762, -0.28937999999999997, 0.6926399999999981, 0.4601999999999986, -0.1333800000000025, -0.3950700000000018, -0.7413900000000027, -1.1056500000000042, -0.9597900000000035, -1.327170000000002, 0.04562999999999895, 0.567449999999998, 1.0085399999999987, 1.448459999999999, 1.8626399999999985, 2.61768, 1.481609999999998, 0.8388899999999985, -0.1782300000000019, -0.4953000000000003, -0.3350100000000005, 0.17276999999999765, -0.6165900000000017, -1.5081300000000053], [0.0, 0.8654100000000007, 1.4254499999999997, 0.43874999999999953, 0.12947999999999982, -1.2409800000000004, -2.1418800000000005, -1.08927, 0.4874999999999987, 0.46409999999999996, 1.8392399999999998, 4.915949999999996, 7.164299999999996, 10.096709999999998, 10.911030000000007, 9.099479999999996, 6.6705599999999965, 0.7850700000000006, -5.014230000000002, -7.005960000000004, -11.563109999999998, -19.380660000000002, -23.10282000000001, -18.971940000000014, -11.255790000000008, -5.789939999999998, -0.9231300000000005, 1.1661000000000024, 2.4160499999999967, 3.504150000000001, 4.033379999999996, 4.052880000000002, 3.3337200000000022, 2.769779999999999, 2.9901299999999997, 4.578990000000009, 4.871100000000001, 5.383170000000007, 5.722080000000002, 5.381999999999998, 5.5512599999999965, 5.259149999999999, 4.505669999999996, 3.3278700000000025, 3.504149999999999, 3.78378, 3.4745099999999995, 3.3434700000000026, 2.83803, 2.3864100000000046, 2.99364, 2.141490000000004, 1.7175600000000006, 2.1769800000000017, 1.8883800000000028, 1.4207700000000005, 1.2924600000000015, 0.6945899999999969, 0.1045199999999995, 0.1696500000000003, 0.7156499999999997, 1.0487100000000025, 1.435200000000001, 0.5721299999999996, 0.15249000000000268, -0.07176000000000138, 0.38531999999999944, 0.7507499999999996, 0.26402999999999843, 0.44850000000000034, 1.1930100000000001, 0.6251699999999982, 1.200810000000002, 2.146950000000002, 3.2377800000000008, 2.4222900000000025, 1.2261600000000028, 0.5261099999999996, 0.7905300000000013, 0.6470100000000001, 0.2648099999999989, 0.11972999999999945], [0.0, 1.3657800000000004, 1.7534400000000012, 1.5015000000000003, -0.10374000000000028, -1.5518099999999961, -2.9082300000000023, -2.8618199999999945, -1.8626399999999959, -0.6255599999999988, 1.291290000000001, 5.113680000000002, 13.524810000000002, 21.10992, 31.574790000000004, 37.281659999999974, 20.788560000000004, -12.887159999999993, -51.417990000000025, -92.89683000000001, -104.12961000000006, -79.09511999999997, -48.667710000000035, -24.080549999999995, -4.140239999999993, 11.253840000000004, 19.92705000000001, 23.945609999999974, 24.683879999999974, 24.009570000000014, 21.451950000000007, 19.141590000000004, 17.54844000000001, 15.795780000000018, 12.731159999999992, 11.34198, 10.53117000000001, 10.06473, 9.83853, 8.913060000000003, 8.124089999999995, 6.943949999999999, 5.293859999999999, 5.530979999999996, 4.462770000000003, 3.9300300000000035, 4.007640000000002, 2.1641100000000004, 1.1196900000000007, 0.2979600000000008, 1.1302200000000004, 1.2881699999999983, 1.1473800000000005, 1.5966600000000004, 1.5483000000000007, 1.1551800000000008, 0.27924000000000115, -0.33032999999999935, -1.0100999999999993, -0.152099999999999, -0.16496999999999928, 0.361140000000001, -0.15366000000000035, 0.10374000000000094, 0.28314000000000017, -0.3591899999999981, -1.0662600000000013, -0.481650000000001, 1.0436400000000008, 0.7265700000000009, 1.4652300000000011, 1.2304500000000005, 0.631800000000001, 1.489020000000001, 1.4476800000000003, 0.4816500000000007, 0.6435000000000004, 0.5506800000000003, 0.3541200000000003, 0.35958000000000034, -0.6337499999999996, -1.4313000000000033], [0.0, 1.11891, 0.5405400000000005, -0.24024000000000356, -1.1079899999999983, -2.753400000000001, -3.0143100000000036, -2.2187100000000015, -1.355249999999999, -0.8927100000000028, 1.54323, 3.60165, 6.123780000000001, 8.356529999999998, 8.85806999999999, 7.904520000000003, 2.6196299999999995, -7.336679999999997, -18.984419999999986, -27.15102000000005, -30.27882, -27.09174000000003, -19.292910000000003, -10.125180000000015, -1.7850300000000052, 3.670679999999999, 6.028619999999999, 7.379969999999999, 7.107360000000001, 7.302359999999999, 6.664710000000004, 5.30868, 4.645289999999999, 4.784519999999998, 3.9046799999999995, 3.8481300000000003, 3.2334899999999998, 3.98424, 5.0462099999999985, 3.61686, 3.8882999999999988, 3.5306699999999998, 1.5050099999999997, 1.5428399999999969, 0.8560499999999998, 0.9613499999999973, 1.5198299999999991, 0.7464600000000003, -0.24725999999999937, 1.0311599999999976, 1.0143899999999992, 0.45473999999999704, 0.8966100000000017, 0.9024599999999992, 0.40715999999999664, 0.514020000000003, 0.14859000000000222, 0.10724999999999918, -1.27374, -0.9219599999999994, -0.45123000000000113, 0.04719000000000273, -0.41223000000000276, -0.3342299999999989, -0.3935099999999996, -0.9597900000000017, -1.3954200000000014, -1.469910000000005, -1.421549999999998, -0.25934999999999775, 0.36699000000000037, 0.18758999999999793, 0.5097300000000016, 0.0062399999999960265, -0.060840000000003336, -0.20124000000000164, -0.3385200000000017, -0.7316400000000001, -0.7261799999999989, -1.1427000000000023, -1.1255399999999947, -1.6356600000000023], [0.0, 1.3100099999999997, 1.5533700000000006, 1.1434799999999998, 0.028859999999996777, -0.41340000000000243, -0.3545099999999999, -0.2745599999999979, 0.361530000000001, 0.07995000000000241, 1.6056299999999983, 3.8672400000000002, 7.28091, 9.394319999999997, 8.021519999999999, 2.4566100000000004, -5.381219999999994, -11.420759999999996, -15.496259999999994, -15.86091000000002, -17.97861, -15.839459999999994, -9.048390000000007, -2.407860000000005, 2.7089399999999997, 6.39054, 7.855380000000004, 8.406839999999994, 7.530900000000001, 8.634990000000004, 7.126470000000001, 6.495839999999999, 4.853550000000001, 5.40501, 4.46121, 3.9994500000000004, 2.9253900000000006, 3.075149999999999, 3.0306900000000008, 2.520570000000001, 2.4008400000000023, 2.9877899999999995, 2.70894, 1.5206099999999991, 1.310009999999998, 1.3256100000000002, 1.0830300000000008, -0.1727700000000003, -0.5417100000000006, -1.4082900000000023, -0.960960000000004, -0.3705000000000003, 0.46917000000000186, 0.2648100000000002, -0.5612099999999987, -0.5814899999999947, -0.4231499999999966, -0.8127599999999995, -0.43953000000000086, 0.13805999999999985, 0.41340000000000376, -0.14663999999999922, -0.9512099999999974, -0.8498100000000011, -0.5140199999999964, -0.037440000000000584, -0.9149399999999992, -1.1333399999999991, -0.3377400000000006, 0.5584800000000034, -0.28977000000000386, -0.6544200000000004, -0.3474899999999965, 0.19344000000000028, 1.0962899999999984, -0.02574000000000254, 0.47423999999999955, 0.20240999999999865, -0.3416399999999995, 0.3861000000000008, 0.0183300000000024, -0.993329999999998], [0.0, 0.42080999999999946, 0.6372599999999999, 0.15833999999999926, -0.30186000000000046, -1.3267800000000003, -1.4925300000000008, -0.7472400000000015, 1.7507100000000002, 1.3380899999999993, 2.4718199999999997, 3.5548500000000014, 3.791579999999999, 3.102059999999996, 2.3236199999999996, 0.4601999999999995, -2.1356399999999995, -5.499000000000003, -10.092419999999995, -12.761969999999991, -12.747150000000003, -11.933609999999993, -9.73947, -5.118359999999998, -0.7604999999999995, 1.5252900000000005, 3.43278, 4.449899999999999, 4.192110000000002, 4.054829999999999, 3.0349800000000005, 2.9889600000000005, 2.299049999999999, 2.521350000000003, 2.46987, 2.972580000000003, 3.7818299999999976, 5.182319999999996, 3.850469999999999, 4.059899999999999, 4.387109999999998, 3.97449, 2.7323399999999998, 1.2479999999999993, 1.9269900000000022, 2.2093500000000006, 1.1173499999999996, 0.6626100000000001, 2.033460000000001, 2.2456199999999997, 1.4071200000000013, 2.1964800000000038, 2.498340000000001, 2.027220000000001, 2.2733100000000013, 2.1180900000000014, 1.3310700000000009, 1.9531200000000002, 1.9308900000000002, 1.7238000000000007, 1.3115700000000001, 0.9371699999999988, 0.42861000000000105, -0.6224399999999999, 0.15170999999999984, -0.17160000000000025, -0.34865999999999936, 0.056940000000000296, 1.5268499999999996, 2.9292899999999995, 2.7038700000000015, 1.75266, 1.46406, 1.5506399999999982, 1.3747500000000001, 1.3825500000000006, 0.07956000000000066, -0.49491000000000046, 0.04718999999999918, -0.7172099999999997, 0.6013799999999998, 0.5167500000000006], [0.0, 0.68367, 1.0760100000000015, 0.5752500000000009, -0.47658000000000156, -0.9153299999999973, -1.2179700000000007, -0.04329000000000072, 0.3822000000000001, 1.4995500000000015, 2.412540000000002, 3.364920000000002, 4.859400000000001, 4.65699, 2.432820000000001, -0.2004600000000023, -4.789979999999998, -8.409569999999988, -11.028030000000001, -11.876669999999999, -12.387569999999998, -10.746060000000025, -6.612839999999993, -2.3271300000000017, 1.6048500000000006, 4.629690000000002, 5.194410000000002, 5.431140000000001, 6.566820000000003, 7.233720000000002, 6.718920000000001, 4.83249, 3.346980000000002, 4.23072, 3.642210000000001, 2.693730000000001, 2.513160000000001, 2.6196300000000017, 3.6613200000000017, 3.5794200000000016, 3.8953200000000017, 2.884050000000002, 2.824380000000001, 2.182440000000001, 1.65711, 2.6118300000000017, 1.8770700000000011, 1.1703900000000014, 1.886820000000001, 1.0085400000000018, 0.8970000000000009, 0.8244600000000004, 0.5280600000000011, 1.1111099999999992, 1.513590000000001, 0.6984900000000005, 0.10335000000000072, -0.8973900000000037, 0.24024000000000134, 0.45123000000000024, 0.08190000000000053, 0.46956000000000175, 0.5187000000000004, -0.37868999999999975, 0.28470000000000306, 0.8131500000000009, 0.44304000000000077, 0.5678400000000008, 1.3287300000000013, 1.636050000000001, 0.6197100000000006, -0.5807100000000012, -0.04913999999999907, 0.28508999999999984, 0.004290000000001015, -0.0011699999999992272, 0.20709000000000177, 0.06708000000000114, -0.09827999999999815, -1.161029999999998, -0.014429999999999055, -0.1579499999999987], [0.0, 1.2004200000000025, 1.3236600000000012, 1.5888600000000004, 1.2635999999999976, 0.19110000000000182, -0.9297599999999973, -0.7347599999999965, -1.0916099999999989, 0.2351700000000001, 1.6376100000000058, 2.849339999999997, 3.295890000000009, 2.3259599999999994, -0.38102999999999865, -2.822039999999998, -6.42525, -9.209459999999993, -11.853269999999998, -13.411320000000002, -11.94843, -9.128339999999994, -5.5637399999999975, -2.9600999999999975, 0.7176000000000045, 2.9612700000000016, 4.382040000000003, 5.549699999999991, 5.626529999999997, 5.109780000000002, 3.807960000000004, 2.1165299999999974, 2.148900000000003, 1.6321500000000029, 2.7565200000000045, 3.205410000000005, 4.1882100000000095, 4.6113599999999995, 4.4541899999999925, 4.094220000000004, 3.205800000000009, 3.4273200000000053, 2.8996499999999994, 2.3173800000000044, 2.8349100000000007, 2.794349999999998, 3.1995599999999973, 2.347020000000004, 2.1703500000000018, 2.458950000000007, 2.2319700000000076, 2.6535599999999997, 1.584180000000007, 1.2008100000000042, 0.8182200000000033, -0.06239999999999668, 0.787410000000003, 1.1571300000000053, 1.7940000000000023, 2.0049900000000047, 1.9640400000000042, 1.3408200000000008, 1.1290499999999999, 1.0857600000000005, 1.3763099999999984, 0.8221200000000013, 0.361530000000001, -0.11621999999999888, 0.7176000000000018, 1.502670000000001, 1.5806699999999996, 0.2652000000000032, 0.6076199999999998, 0.16887000000000318, 0.6871800000000041, 1.4741999999999988, 1.0042500000000003, 0.17159999999999753, -0.478139999999998, -0.22736999999999785, 0.31083000000000016, -0.3365699999999969], [0.0, 0.21645000000000092, 1.164930000000001, 0.9640800000000017, 0.4598100000000025, 0.3615299999999988, -0.440309999999998, -0.22931999999999908, -0.36425999999999936, 0.6045000000000014, 0.7655700000000014, 1.3100100000000006, 1.595490000000001, 0.25467000000000195, -4.252559999999999, -8.807369999999995, -12.77367000000001, -14.52477, -13.94874000000001, -11.273730000000008, -8.692320000000006, -5.444789999999996, -1.738619999999997, 2.3700300000000003, 3.7779300000000005, 4.5466200000000025, 5.295030000000004, 5.402670000000004, 5.084820000000002, 5.941260000000005, 6.471269999999999, 4.517760000000003, 3.512340000000002, 3.9655200000000015, 3.5431500000000016, 3.985799999999999, 4.3200300000000045, 3.396510000000001, 3.638700000000002, 3.719040000000001, 2.863380000000001, 2.447250000000001, 1.919970000000001, 2.722980000000001, 2.7116700000000016, 2.9355300000000017, 3.6285600000000002, 1.633710000000001, 1.6816800000000018, 0.9434100000000005, 0.6883500000000018, 0.5124600000000017, 0.24219000000000146, 0.5666699999999993, 1.0026900000000007, -0.33890999999999805, 0.6204900000000015, 0.31589999999999874, 1.4820000000000013, 2.6289900000000013, 2.028780000000001, 0.7530900000000011, -0.8310899999999966, -1.2518999999999996, -0.9515999999999978, -0.07253999999999827, 0.0994500000000007, 0.7020000000000004, 1.1259299999999999, 0.8279700000000001, -0.08852999999999955, -1.179749999999998, -0.6977099999999985, -0.24219000000000168, 0.3790800000000012, 0.9083100000000022, 0.5877299999999996, 0.20436000000000099, 0.2687099999999998, -0.9484800000000049, -0.902070000000001, -1.0701599999999973], [0.0, -0.3295500000000011, 0.8150999999999995, 1.474589999999999, 1.4008799999999997, -0.28235999999999994, -0.9434100000000016, -0.4325100000000006, -0.75309, 0.6813299999999997, 1.6169399999999992, 1.3685099999999992, 0.8002799999999992, -0.2765100000000007, -2.2627799999999993, -3.9608399999999993, -4.695600000000005, -5.712329999999999, -7.669739999999998, -9.28668, -8.859630000000005, -7.585500000000006, -5.7357300000000055, -3.4242000000000044, -0.4832100000000008, 1.5560999999999994, 3.633630000000002, 4.320029999999998, 4.41324, 4.278300000000004, 2.58687, 1.7982899999999993, 1.4640599999999997, 1.0607999999999993, 2.294369999999999, 2.544360000000001, 3.3809099999999983, 3.08061, 3.575129999999998, 3.6160799999999975, 2.9308499999999977, 2.13096, 1.5806699999999991, 1.7752799999999995, 3.2284200000000016, 3.5372999999999992, 2.5404599999999986, 1.7448600000000005, 2.302559999999999, 2.5755599999999994, 1.0830300000000008, 1.1501099999999989, 1.0526099999999994, 2.3836799999999996, 1.69611, 0.9800699999999998, 0.5105100000000002, 0.5768099999999998, 0.31979999999999964, 0.38843999999999956, 1.3455000000000001, -0.4024800000000015, -0.5705700000000002, 0.36309, 0.9469199999999991, 0.9937199999999999, 0.32408999999999943, 0.4691699999999994, 1.24722, 1.159859999999999, 0.6715800000000005, -0.8845199999999986, -0.5888999999999984, -1.119300000000001, -0.4839899999999986, -0.3100499999999997, -0.3096599999999994, 0.1283100000000006, -0.06045000000000078, 0.24374999999999813, 0.048359999999998404, 0.6376499999999998], [0.0, 0.8521500000000004, 1.91568, 1.4496300000000002, 0.45785999999999855, -0.05030999999999969, -0.8618999999999997, -1.5580499999999995, -1.2811500000000011, 0.6181500000000006, 0.9219599999999988, -0.37634999999999913, -0.9707100000000002, -3.7225499999999996, -7.852259999999997, -10.90634999999999, -12.888329999999998, -13.620750000000012, -13.111410000000006, -12.302159999999994, -9.122880000000006, -5.313360000000003, -1.1606400000000001, 1.9113900000000013, 4.1277599999999985, 5.0711700000000075, 6.786779999999994, 5.799300000000003, 5.9240999999999975, 5.594159999999996, 4.65699, 3.0197699999999967, 2.8388100000000005, 2.9285099999999984, 3.0045600000000006, 3.5997000000000017, 3.7568700000000015, 3.318120000000002, 2.7834300000000014, 2.2448400000000013, 1.5580499999999988, 2.02566, 1.8883800000000024, 2.536170000000002, 2.9991000000000025, 3.258449999999998, 3.3684300000000023, 2.390309999999999, 2.4351600000000007, 1.650870000000003, 0.783119999999998, 1.011270000000002, 0.51129, 0.5873400000000002, -0.29756999999999934, 0.3412499999999999, 0.11076000000000036, 0.8685300000000005, 0.9933299999999987, 1.139579999999999, 1.1423099999999997, 1.1598599999999988, 1.6286399999999999, 0.6087900000000006, 0.9188399999999999, 0.4839900000000001, 0.84006, 0.8381099999999999, 1.0065900000000008, 1.284269999999998, 0.3303299999999996, -0.11427000000000137, -1.9761300000000006, -0.9402899999999998, -0.8997299999999997, 0.56121, 1.4878499999999995, 0.6076200000000003, -0.7792200000000008, -1.1419200000000007, 0.1544400000000003, 0.07292999999999988], [0.0, -0.048360000000000625, 1.8212999999999995, 2.482739999999996, 1.7815199999999982, 0.17900999999999856, -1.0218000000000003, -0.03003, 0.012869999999999826, 1.302989999999999, 0.2757299999999997, -0.019110000000000626, -0.3143400000000006, -1.4180400000000004, -3.5844899999999997, -4.399590000000002, -4.433520000000002, -4.741620000000002, -5.993129999999998, -6.3792300000000015, -4.7131500000000015, -4.017000000000001, -1.5221700000000007, 0.5569199999999997, 2.983890000000001, 5.351189999999999, 6.1198799999999975, 6.4814099999999994, 5.906939999999998, 5.832840000000005, 4.109430000000002, 2.6863200000000003, 3.039660000000001, 2.625090000000001, 2.1313500000000003, 2.8867799999999986, 3.3961200000000034, 3.2873099999999944, 3.4608600000000003, 2.3669100000000025, 2.1910200000000017, 2.7518400000000005, 3.1710900000000026, 4.011540000000001, 3.828239999999999, 3.2058000000000004, 3.222179999999999, 2.930459999999999, 1.6925999999999992, 1.5853499999999987, 1.836509999999997, 1.5299699999999987, 2.0162999999999998, 2.2674600000000034, 2.115749999999999, 1.6789499999999995, 1.567409999999998, 1.62318, 1.4422200000000007, 1.8891600000000008, 1.7160000000000002, 0.048359999999999514, 0.36776999999999915, 1.2008099999999988, 2.39733, 2.744430000000002, 1.6723199999999978, 1.4164800000000013, 1.2214799999999997, 1.573649999999998, 0.9983999999999985, 0.7027799999999987, 0.33423000000000025, 1.1684399999999986, 0.742169999999999, 1.2850499999999978, 0.9687599999999997, 0.9586200000000001, 0.5350799999999988, 0.3853199999999989, 0.3970199999999994, 0.9118200000000004], [0.0, 1.1204700000000005, 1.272180000000001, 1.3072799999999984, 1.4348100000000001, 0.2796299999999997, -0.8962200000000009, -1.3770900000000015, 0.1879800000000001, 1.29636, 1.8548399999999996, 0.10569, -1.38021, -3.87738, -6.966569999999997, -10.937939999999989, -11.974169999999999, -12.108329999999992, -10.617750000000017, -7.228650000000002, -3.093090000000001, 0.18485999999999891, 3.791970000000001, 6.162390000000002, 6.486870000000003, 7.243080000000003, 6.707220000000001, 6.099600000000001, 5.5099199999999975, 5.268899999999999, 3.8255099999999995, 2.934750000000002, 3.616859999999999, 2.84154, 2.79942, 3.768570000000001, 3.9050700000000003, 3.67458, 2.4932700000000003, 1.152450000000002, 1.5658500000000002, 1.9172400000000012, 2.252640000000002, 3.0373199999999976, 3.0985499999999986, 3.963569999999996, 3.4331699999999974, 2.45583, 1.8341699999999994, 1.4449500000000004, 0.5241600000000001, 1.04169, 1.8064799999999999, 1.2753, 1.5147600000000003, 1.205489999999999, 0.26091000000000075, -0.4913999999999993, 1.0994100000000007, 2.2280700000000015, 1.723409999999999, 0.5229899999999998, 0.41378999999999955, -0.00819000000000042, 1.053, 2.2834500000000006, 2.417610000000001, 1.2125099999999995, 0.49217999999999984, 0.43796999999999975, 0.76206, -0.07254000000000005, -0.05732999999999955, 0.3942899999999998, 1.5213899999999994, 1.5159299999999996, 1.1056500000000002, 0.7815599999999996, -0.1938299999999996, -0.6645600000000014, -0.7835100000000004, -1.0654799999999998], [0.0, 0.9149399999999996, 2.0369699999999984, 2.061149999999998, 1.8041399999999985, 0.1279199999999978, -1.232790000000004, -0.4410899999999929, 0.3896099999999967, 1.5108599999999983, 1.3837199999999994, 1.5584399999999987, 0.6696300000000002, 0.0955499999999967, -1.6563300000000059, -3.1391100000000023, -3.1484700000000023, -3.7701299999999893, -4.511909999999994, -4.3761899999999985, -3.1523699999999986, -3.182790000000005, -0.6793799999999992, 1.0650899999999988, 2.868059999999998, 2.762369999999999, 4.077839999999999, 4.451069999999999, 3.5357399999999988, 4.838339999999997, 4.799339999999999, 2.98467, 2.938259999999998, 2.1855599999999984, 1.5966599999999964, 2.491319999999998, 3.8426699999999987, 3.8648999999999982, 3.5762999999999985, 3.69174, 3.523649999999998, 3.0891899999999994, 3.1609499999999975, 2.819309999999999, 2.5923299999999982, 3.390269999999999, 4.123859999999999, 3.6527399999999988, 2.375879999999997, 2.169959999999998, 2.458949999999998, 2.706209999999998, 2.8255499999999967, 2.7892799999999998, 2.09976, 1.368509999999994, 1.50501, 1.0787400000000007, 1.7366700000000002, 0.7487999999999992, 1.5666299999999995, 1.5092999999999979, 1.0814699999999955, 2.2159799999999965, 2.6722799999999998, 1.6103100000000006, 0.09086999999999712, 0.4660499999999974, 0.9141600000000003, 1.9792499999999977, 2.5424099999999976, 1.6937699999999962, 1.3880099999999977, 1.4137499999999976, 2.281109999999998, 1.2663299999999986, 1.5783299999999998, 2.4398399999999985, 0.9574499999999988, 1.0931699999999989, 0.30146999999999924, -0.15053999999999323], [0.0, 0.6836700000000091, 1.2916799999999977, 1.4195999999999982, 1.31703, 0.19188000000000027, -0.3560699999999981, -0.42042000000000357, -0.7172100000000068, 0.2265900000000025, 0.2570099999999984, -0.30302999999999436, -0.20513999999999744, -1.4905799999999925, -3.1028399999999916, -4.56105, -4.348500000000007, -4.522829999999992, -4.456139999999994, -3.2315400000000007, -1.829880000000001, -1.0245300000000004, 0.829139999999998, 1.4430000000000005, 3.8274599999999994, 5.307900000000002, 5.1842700000000015, 5.575440000000005, 4.470570000000004, 4.573920000000003, 2.9675100000000043, 2.5166699999999995, 2.557230000000004, 2.8392000000000035, 2.6968499999999977, 3.5119500000000006, 4.360980000000005, 4.138290000000001, 3.4288800000000026, 3.452280000000005, 2.7128400000000035, 3.993210000000005, 4.0271400000000055, 3.8235600000000036, 3.2592299999999987, 3.1348200000000075, 3.52794, 2.3442900000000044, 1.5873000000000088, 2.114970000000005, 2.312310000000002, 2.5447500000000014, 1.5826200000000101, 2.1871200000000037, 0.8853000000000097, 1.2421499999999979, 1.2710100000000013, 1.278029999999994, 2.3801699999999952, 2.3411700000000026, 2.1461700000000103, 1.2316200000000048, 1.4917500000000024, 1.2207000000000052, 2.358329999999996, 2.617290000000004, 1.9082700000000026, 1.1079899999999965, 0.6091799999999976, 0.9036300000000006, 1.0210199999999974, 1.2047100000000066, 0.9465300000000108, 1.590030000000004, 2.1676200000000065, 2.166840000000004, 1.1271000000000102, 0.8747700000000096, 0.06278999999999613, -0.1232399999999867, 0.9519899999999977, -0.4321199999999985], [0.0, -1.11306, 0.04524000000000239, 1.5299700000000014, 1.1863799999999998, -0.09554999999999625, 0.1692600000000013, -0.5682299999999989, 0.45474000000000103, 0.9937200000000024, 0.808080000000003, 0.44498999999999933, 0.3970200000000008, 0.3939000000000008, -0.5319600000000051, -1.850939999999998, -2.071290000000002, -1.707029999999998, -1.9160699999999993, -2.2124700000000006, -0.7647899999999996, -0.7355400000000003, -0.7086300000000034, 0.5822699999999985, 1.7089800000000013, 2.302170000000002, 1.9398599999999995, 3.5493899999999945, 2.986229999999993, 2.9472299999999967, 3.395340000000001, 3.242459999999996, 1.988220000000008, 1.7764500000000005, 1.219920000000001, 1.5580500000000033, 2.4027900000000004, 3.685109999999998, 3.393390000000003, 3.17265, 3.012360000000002, 2.7650999999999977, 3.539639999999996, 3.534569999999994, 4.8305399999999965, 3.599699999999988, 3.126629999999998, 2.5759499999999917, 0.7647900000000014, 0.6766500000000013, 2.052959999999999, 2.219100000000002, 3.2717100000000006, 2.827109999999994, 1.3287299999999957, 0.4317299999999995, 0.5179199999999957, 0.6598800000000002, 0.20240999999999643, 1.5603899999999973, 2.0939099999999993, 3.1340399999999917, 2.2811099999999938, 2.042040000000001, 1.8170100000000016, 1.5268499999999934, 1.0935599999999983, -0.08073000000000041, -0.5366400000000007, 0.6762600000000036, 1.583790000000004, 1.0338900000000057, 1.6614000000000058, 1.1844299999999954, 1.7011799999999955, 2.784600000000003, 2.4390599999999933, 1.37397, 1.3170299999999928, -0.06473999999999958, 0.05381999999999909, -0.1840800000000029], [0.0, -1.0167300000000017, -0.3584100000000019, 0.26481000000000154, 1.1489400000000023, 0.6739199999999976, -0.08112000000000119, 0.10724999999999651, 0.42432000000000025, 0.5619900000000007, 0.6825000000000014, 0.5920199999999989, -0.08931000000000111, 0.3104399999999994, -1.3396499999999998, -2.7413099999999995, -2.732339999999997, -1.6302000000000012, -2.018249999999999, -2.5369499999999983, -1.4819999999999949, -0.12518999999999947, 0.48866999999999994, 1.4043899999999998, 3.3368400000000005, 3.4608600000000007, 3.7798800000000004, 3.68082, 3.6301200000000002, 2.938259999999999, 2.307630000000001, 1.3115699999999992, 1.1095499999999952, 2.344680000000001, 2.5139399999999994, 2.2647299999999992, 2.7924000000000015, 3.1016700000000013, 2.74794, 1.8782400000000001, 1.5740400000000005, 2.4222900000000003, 3.082170000000001, 3.2791200000000007, 2.8146300000000006, 2.2900800000000006, 2.4897600000000013, 2.10717, 1.2827100000000011, 1.5986100000000012, 0.5323500000000001, 1.06665, 2.1005400000000005, 1.1583000000000006, 1.636050000000001, 1.5771600000000014, 1.034279999999999, 0.5736900000000009, 0.44187000000000065, 1.4543100000000013, 2.7947400000000013, 2.378610000000001, 1.13022, 0.05030999999999919, 1.382160000000002, 2.062320000000001, 1.645020000000001, 1.0362299999999998, 0.9882600000000008, 0.6154199999999981, 0.4009199999999975, 1.047540000000002, 1.5752100000000007, 1.6461899999999998, 2.1758100000000007, 2.1625500000000004, 1.7787900000000005, 1.3470599999999973, 1.4589900000000027, 1.0358400000000003, 0.64662, 1.077179999999999], [0.0, -0.43562999999999763, -0.7862400000000019, 0.10607999999999829, -0.10374000000000183, -1.5050099999999977, -0.8821800000000001, -0.5857800000000007, -0.34593000000000107, 0.4009199999999984, -0.2772900000000019, 0.020279999999996745, -0.32643000000000144, 0.23633999999999866, -0.18369000000000135, 0.17042999999999853, -0.9636900000000014, -1.0725000000000011, -2.398500000000003, -3.7053900000000004, -3.798989999999998, -2.4601200000000003, -1.5646799999999992, -1.2838800000000035, -1.0736700000000021, 0.22463999999999806, 1.7721599999999995, 1.7709900000000003, 1.6520399999999982, 2.1165299999999987, 2.3637900000000003, 1.9538999999999973, 0.5081699999999991, 0.845129999999999, 0.6524699999999988, 1.3018199999999984, 2.1020999999999983, 2.5700999999999983, 3.3056399999999972, 3.6032100000000007, 2.483909999999999, 2.93046, 2.9534700000000007, 2.2144199999999983, 1.2725699999999993, 1.5759899999999991, 2.158259999999999, 1.6009499999999988, 0.2846999999999975, 0.1361099999999975, 1.044029999999999, 1.1972999999999985, 1.5521999999999991, 1.3833299999999988, 0.7975499999999986, 0.20396999999999832, -0.023400000000001087, -0.5448300000000005, -0.20553000000000055, 0.6220499999999987, 1.5876899999999985, 1.808819999999999, 1.8173999999999984, 1.7990699999999984, 2.064659999999998, 1.3985399999999988, 0.9878699999999989, 0.15677999999999848, 0.5682299999999982, 1.6664699999999995, 1.7549999999999983, 1.1528399999999983, 0.8607299999999979, 0.8607299999999988, 2.314259999999999, 2.1984299999999983, 1.8173999999999984, 1.6727099999999993, 1.7858099999999988, 0.2858699999999996, -0.4336800000000026, 0.13064999999999838], [0.0, -0.9886500000000014, -1.3369199999999994, -0.14430000000000276, 0.29678999999999967, -0.322139999999999, -0.4126200000000002, -0.39624000000000303, -0.6481800000000011, -0.7456799999999999, -1.2156300000000029, -0.7109700000000025, -0.3315000000000008, -0.02652000000000121, 0.5748600000000006, -0.14234999999999975, -0.7636199999999993, -1.2171900000000007, -2.0931299999999995, -2.8255499999999936, -1.540889999999999, -2.077919999999999, -1.36344, -0.5506799999999978, 0.7495799999999988, 1.2944099999999987, 1.9265999999999988, 3.0845100000000008, 4.05639, 3.373109999999999, 3.3598499999999993, 2.090009999999999, 1.29324, 1.1945700000000015, 1.6110899999999986, 1.914509999999999, 2.9577600000000004, 4.083299999999999, 3.14457, 2.22885, 2.6243099999999995, 2.376659999999998, 3.4234199999999966, 3.6086699999999983, 2.9784299999999995, 3.013139999999999, 2.3739299999999988, 0.8189999999999984, 0.1887599999999976, -0.049530000000000074, 1.5432299999999999, 1.8649799999999992, 1.7577299999999996, 0.8825699999999996, 0.205920000000001, -0.17472, -0.7012200000000008, -1.0541699999999985, -0.39350999999999936, 0.3174600000000012, 1.4648399999999993, 2.4854699999999994, 2.48859, 1.926989999999999, 1.9519499999999992, 1.7522700000000004, 1.8119399999999997, 1.6637400000000004, 0.5569199999999992, 1.06197, 1.8934499999999996, 1.5834000000000001, 2.037359999999999, 2.1395399999999998, 1.4153100000000003, 2.3232299999999997, 1.3466699999999991, 0.8147099999999998, 1.0046399999999989, 0.12167999999999757, -0.7027800000000004, 0.3420299999999985], [0.0, -0.32799000000000333, -1.1957400000000016, 0.11973000000000233, 0.5647200000000017, 0.7074600000000024, 1.2604800000000025, 0.9570600000000038, 0.9274199999999992, 0.38063999999999654, 0.37049999999999894, -0.3868799999999952, -0.24530999999999548, 0.6466200000000026, 0.5506800000000003, 0.1493700000000029, 2.268240000000002, 1.574820000000002, 0.7238400000000031, 0.39117000000000335, 0.750360000000005, 0.9207900000000024, 1.1333400000000031, 1.8154500000000007, 1.4617200000000028, 1.5939300000000056, 2.147340000000004, 2.613780000000003, 3.086070000000002, 3.0638400000000034, 3.738930000000004, 2.5954500000000036, 1.6325400000000023, 0.9714900000000024, 1.4648400000000046, 2.2113000000000014, 3.0868500000000028, 3.7432200000000027, 3.423420000000003, 3.0369300000000026, 3.139110000000003, 3.094650000000003, 2.6874900000000026, 3.7120200000000025, 2.5119900000000017, 2.5665900000000033, 1.9441500000000027, 0.8026200000000032, 1.454700000000002, 0.8810100000000003, 1.9098300000000017, 2.290860000000002, 2.008890000000006, 2.1898500000000025, 1.6536000000000026, 0.9687600000000014, 0.27962999999999916, 0.36035999999999957, 0.4438200000000019, 0.9601800000000029, 1.9347900000000013, 2.9745300000000032, 1.3521300000000012, 1.9383000000000017, 1.8587400000000014, 2.412930000000003, 2.163720000000001, 1.382550000000005, 1.3720200000000022, 2.3864099999999997, 3.186300000000004, 2.812680000000003, 2.6913900000000037, 2.64069, 2.9558100000000027, 2.441010000000002, 2.6590200000000017, 1.2495600000000042, 2.0560800000000024, 1.2304500000000003, 0.87399, 1.136070000000001], [0.0, -1.0241399999999987, -1.1356800000000034, -0.12986999999999949, 0.7768800000000029, 0.334620000000001, 0.744120000000001, 0.1758900000000021, 0.29717999999999734, 0.2808000000000037, 1.0654800000000002, 1.3111799999999996, 1.1368499999999993, 0.5417099999999992, 0.3396900000000018, 0.32760000000000167, 0.19110000000000182, 0.34475999999999685, -0.05615999999999799, -0.6263399999999995, -0.3962400000000006, -0.6126900000000037, -0.3498299999999994, 1.1450399999999992, 2.07012, 3.6071100000000005, 3.0466800000000003, 3.56421, 5.086379999999998, 4.509960000000001, 3.8415000000000004, 3.1005000000000007, 2.3021700000000003, 2.14539, 1.9008600000000009, 1.5596099999999995, 3.480360000000001, 4.0193400000000015, 3.9015600000000012, 3.54549, 2.87313, 2.8700100000000015, 3.03108, 3.890639999999999, 2.7261, 3.417570000000001, 2.4445200000000007, 1.5841800000000001, 1.1536200000000008, 0.34905000000000275, 0.6513000000000013, 0.7581599999999975, 2.07948, 2.843880000000001, 2.0673900000000023, 1.2764700000000015, 0.7975500000000015, 0.5647200000000017, 0.3822000000000001, 1.0132200000000002, 1.5272400000000006, 2.6750100000000017, 2.2323599999999986, 2.7717300000000007, 3.357509999999998, 2.3868, 2.4098100000000007, 2.401230000000001, 2.89341, 2.6808600000000005, 2.5619100000000006, 2.2206600000000005, 2.3329800000000005, 3.0088500000000007, 2.954640000000001, 2.548260000000001, 2.355600000000001, 1.7655299999999998, 1.7277, 0.6813299999999987, 0.6029400000000003, 0.8626799999999988], [0.0, 0.03041999999999989, 0.912209999999996, 0.870869999999996, 1.3903499999999975, 2.59857, 1.888379999999998, 2.027609999999997, 1.4804399999999986, 2.206229999999999, 3.326309999999999, 2.13837, 2.362229999999999, 2.200379999999999, 1.8025799999999979, 1.3977599999999983, 2.2534199999999984, 3.4031399999999983, 2.452319999999999, 3.307199999999998, 4.031039999999999, 4.342259999999998, 4.778279999999997, 3.4604699999999995, 3.0751499999999985, 3.1316999999999986, 2.9468399999999986, 3.9218399999999995, 3.2330999999999976, 3.75921, 3.9912599999999996, 2.486249999999998, 2.8512899999999988, 3.046289999999999, 3.4097699999999986, 3.519359999999999, 3.8110799999999987, 4.113329999999998, 3.708899999999999, 2.4546599999999983, 2.019029999999998, 2.1106800000000003, 3.6094499999999985, 4.780619999999999, 4.1515499999999985, 3.509609999999998, 3.105959999999998, 3.73503, 3.9834599999999987, 3.332939999999998, 3.709289999999999, 2.7974699999999992, 2.7401399999999985, 3.5696699999999986, 3.467489999999999, 3.1453499999999988, 2.793179999999998, 3.3060299999999985, 4.708859999999996, 4.0832999999999995, 4.282589999999998, 4.047029999999999, 3.898439999999999, 3.1063499999999986, 2.7506699999999986, 1.8938399999999982, 1.2047100000000004, 1.8544499999999986, 3.277949999999999, 3.5294999999999987, 3.3754499999999994, 2.6777399999999982, 3.4241999999999995, 4.132049999999999, 4.038839999999999, 5.100419999999999, 4.664009999999999, 3.836039999999998, 4.020509999999998, 2.9355299999999986, 1.8848699999999963, 2.0736299999999988], [0.0, -0.44265, -1.3646099999999999, 0.010139999999999816, 2.0701200000000015, 1.3026000000000015, 1.5221700000000014, 1.0935600000000014, 1.770600000000001, 2.2522500000000014, 2.047500000000001, 2.031900000000001, 1.9948500000000018, 1.6126500000000006, 1.3638300000000014, 1.6325400000000014, 2.7175200000000004, 3.0618900000000018, 2.7764100000000007, 3.1788900000000018, 3.82785, 4.270890000000003, 3.356340000000001, 3.0299100000000014, 3.367260000000001, 3.3980700000000024, 3.2311499999999986, 2.7471600000000027, 2.8711800000000016, 3.3313799999999985, 3.185130000000002, 2.084160000000001, 1.5408900000000016, 0.1579500000000016, 0.001949999999998786, 0.8888100000000023, 2.1902400000000006, 3.128580000000002, 2.4960000000000004, 1.9367400000000008, 0.7222800000000025, 0.9090900000000002, 0.9816300000000016, 0.9613500000000005, 0.737880000000001, 1.4999400000000016, 1.1025300000000016, 0.6423300000000014, -0.5752499999999987, -0.349049999999997, -0.7741500000000014, -0.40131000000000094, -0.3716699999999973, 0.5631600000000014, -0.04757999999999685, -0.3041999999999998, -0.6119099999999995, -0.5171399999999986, 0.49608000000000163, 0.782730000000001, 1.0455900000000011, 1.5124200000000012, 1.1220300000000005, 0.9387299999999997, 1.5124200000000017, 1.7280900000000015, 1.7741100000000012, 1.3903500000000015, 1.9301100000000015, 2.4129300000000007, 2.4819600000000017, 2.0482800000000014, 2.2296300000000016, 2.284620000000001, 3.0739800000000015, 3.7506300000000015, 3.4300500000000014, 2.0272200000000016, 1.3174200000000011, 0.29406000000000043, 0.04992000000000085, -0.5136300000000031], [0.0, -1.473809999999998, -0.9122099999999991, 0.17589000000000077, 1.0522200000000028, 0.7016099999999992, 0.33345000000000047, 0.2780700000000036, 1.2398100000000043, 1.4952600000000023, 1.393079999999999, 1.951170000000007, 1.2643800000000027, 0.8533200000000059, 0.6333600000000019, 0.5276700000000027, 1.4749800000000035, 1.7050800000000046, 1.2242100000000025, 1.4886300000000037, 1.2511200000000007, 1.5576599999999998, 1.322100000000003, 0.8700900000000003, 0.1010100000000036, 0.8611200000000054, 1.2222600000000021, 0.744899999999999, 0.7207200000000018, 1.3837200000000043, 0.5838300000000052, 0.7932600000000019, 1.0065900000000032, 0.7012200000000024, 0.5393700000000026, 1.8006299999999986, 2.3879699999999997, 2.579460000000005, 2.515110000000003, 1.9761299999999982, 2.3002200000000053, 2.7062099999999982, 3.2424600000000052, 2.9187599999999985, 2.601300000000004, 3.034199999999999, 2.32518, 2.4858599999999913, 1.5128100000000013, 2.092740000000003, 1.9371300000000038, 1.3419900000000036, 1.2078300000000022, 2.3341500000000024, 1.7635800000000015, 1.7429100000000042, 2.1824400000000046, 2.7990299999999926, 3.431609999999996, 3.4787999999999983, 3.169919999999999, 2.511600000000001, 1.0338900000000013, 0.13338000000000427, 0.5709600000000048, 0.9730499999999997, -0.03899999999999748, 0.4539600000000039, 1.7908800000000027, 3.3462000000000045, 3.0158699999999956, 2.5388999999999995, 3.172649999999996, 2.5533299999999994, 2.621579999999994, 2.608320000000005, 1.669200000000005, 0.6809400000000028, 1.5849600000000028, 1.130610000000007, 1.0853699999999993, 1.0331100000000006], [0.0, -0.44031000000000065, -0.3529500000000001, 0.054990000000000316, 0.7136999999999996, 0.72969, 1.2343499999999998, 0.9301500000000006, 1.219529999999999, 2.1453900000000004, 2.2670699999999986, 1.933619999999999, 1.947659999999999, 2.2826699999999995, 1.5342599999999993, 1.3747499999999995, 1.306109999999999, 2.55645, 3.435900000000001, 2.29242, 2.513939999999999, 3.5595300000000005, 2.61573, 1.6844099999999997, 1.4823899999999997, 2.3251800000000005, 2.254200000000001, 1.8400199999999987, 1.1731199999999993, 1.0849799999999998, 1.6083600000000002, 0.9297599999999984, 0.9340499999999995, 0.46604999999999885, 0.8845200000000002, 1.7577299999999996, 3.0322499999999994, 4.294680000000002, 3.659370000000001, 2.9511299999999987, 3.3551699999999984, 2.6094899999999965, 2.8602599999999985, 2.3665199999999986, 2.43711, 3.710069999999998, 4.542719999999999, 4.0158299999999985, 2.79942, 3.1660200000000005, 1.126319999999999, 1.9024199999999998, 1.5159299999999996, 1.7471999999999999, 2.4160499999999985, 2.9522999999999997, 2.46753, 2.904329999999999, 3.471779999999997, 3.4768500000000024, 3.75063, 3.373499999999999, 3.0104099999999985, 2.30841, 1.7023499999999994, 2.2304099999999987, 2.644589999999999, 2.3832899999999997, 2.740530000000003, 3.14145, 3.070080000000001, 2.9612700000000003, 1.82754, 3.214769999999999, 3.6897899999999986, 3.393390000000001, 3.4811400000000026, 2.3813400000000007, 1.8064799999999992, 1.220699999999999, -0.0019500000000014506, 0.11933999999999734], [0.0, -0.422370000000002, -0.33618000000000003, 0.801839999999999, 0.8100299999999998, 1.329119999999998, 0.7382699999999993, 0.762059999999999, 0.6770399999999994, 1.6972800000000001, 1.7140499999999999, 2.1391499999999986, 1.4020499999999982, 1.0853699999999988, 0.8654099999999998, 0.31121999999999933, 1.0760099999999997, 2.00928, 1.2440999999999982, 1.2433199999999998, 1.7947799999999998, 2.400839999999999, 2.0896199999999996, 1.5194399999999995, 0.9016800000000005, 0.6353100000000005, 1.3470600000000008, 2.1102900000000013, 2.147729999999999, 1.6083600000000002, 1.1489399999999996, 1.07211, 1.8794099999999996, 1.3529100000000005, 1.59042, 3.066180000000001, 3.618029999999999, 2.8973099999999996, 2.6211900000000026, 2.5895999999999995, 1.7483700000000013, 3.038490000000001, 3.7463399999999965, 2.9909099999999995, 1.4285699999999997, 1.6126500000000008, 1.8357299999999985, 1.3759199999999998, 0.5697900000000001, 0.42353999999999936, 1.3938599999999992, 2.6921700000000013, 2.8466100000000005, 2.61768, 1.43871, 1.3193700000000015, 2.8953599999999984, 3.270540000000001, 4.142189999999998, 4.639440000000001, 4.344989999999999, 3.7849500000000016, 1.7027400000000008, 1.299869999999999, 0.3186299999999993, 0.2433599999999993, 1.1372399999999994, 0.8264099999999996, 1.3181999999999996, 2.2249500000000015, 2.4909300000000014, 2.0478899999999993, 2.796689999999999, 2.3637900000000007, 2.50146, 2.8317900000000003, 1.47927, 0.4781399999999996, 1.361099999999999, 1.8033599999999996, 1.7908799999999991, 1.9016399999999982], [0.0, -1.5186600000000001, -0.24141000000000012, 1.4340300000000006, 1.3439399999999992, 1.6469699999999987, 1.4094599999999995, 1.9129499999999986, 1.7316000000000005, 2.0896199999999983, 2.26707, 2.317380000000001, 2.0904, 1.98315, 1.9788599999999998, 1.5447899999999992, 1.4527500000000009, 2.64849, 3.2662500000000003, 3.6414299999999993, 1.7994600000000003, 3.0860700000000003, 2.5693200000000007, 1.4020500000000005, 1.5884699999999987, 1.868100000000001, 0.44265000000000043, 1.1840399999999995, 0.8256300000000008, 0.5986499999999997, 0.10529999999999973, 0.16965000000000074, 0.4383599999999994, 0.7168200000000025, 1.1154000000000006, 1.9737899999999993, 1.8657600000000025, 2.0806499999999994, 2.0447700000000006, 1.7120999999999997, 2.033459999999999, 3.6308999999999996, 3.747510000000001, 3.2631300000000003, 1.6009499999999979, 1.5646799999999994, 2.115359999999999, 2.551770000000001, 2.40942, 2.847390000000001, 1.9098299999999984, 2.10327, 3.22725, 3.3579000000000003, 1.7050799999999982, 2.3056799999999993, 2.19843, 2.6730599999999995, 3.468269999999999, 3.97332, 4.003349999999999, 3.1706999999999996, 3.3520499999999993, 2.0447699999999993, 1.304939999999999, 1.5997800000000002, 1.0323300000000009, 0.9703200000000001, 2.705039999999999, 2.52057, 2.3903099999999977, 2.139540000000002, 2.2218299999999997, 2.2881299999999998, 2.450369999999999, 2.681249999999999, 2.4827399999999997, 2.043990000000001, 1.286610000000002, 1.3451099999999985, 0.8891999999999984, 1.5900300000000007], [0.0, 0.42939000000000505, 0.4290000000000047, 0.7472400000000041, 0.4886700000000044, 0.5889000000000042, -0.03353999999999324, 0.6544200000000053, 0.9239100000000038, -0.5409299999999941, -0.5662799999999901, -0.824069999999991, -0.5264999999999898, 0.853710000000004, 0.089310000000002, 0.4972500000000055, 0.3381300000000085, 0.16731000000000762, -0.05264999999999187, 0.8665800000000097, 1.2394200000000088, 1.1228100000000092, 0.9535500000000061, 0.5023200000000028, 0.22893000000000185, 0.27222000000000346, 0.16770000000000618, 0.6661200000000012, 0.2691000000000061, -0.4609799999999895, -0.3864899999999887, 0.02652000000000143, 0.5471700000000039, 0.7527000000000035, 0.6446700000000058, 0.14820000000001077, 0.30810000000000315, 0.015990000000015492, -0.2449199999999907, -0.17940000000000111, -0.8938799999999976, -1.2199199999999912, -0.1396199999999892, -0.10139999999999372, 0.3650400000000138, 1.1317800000000071, 1.2530700000000081, 0.9796800000000054, 0.2784600000000106, 0.6509100000000059, 0.13182000000000915, 1.284270000000003, 2.3513100000000113, 2.211300000000004, 1.6746600000000083, 1.429739999999999, 1.6017300000000008, 1.6992299999999991, 1.9679400000000067, 1.0307700000000102, 2.008500000000012, 2.797080000000001, 2.710500000000007, 2.7857700000000047, 2.9109600000000064, 2.5010700000000075, 2.164500000000001, 2.5837500000000055, 1.9886100000000022, 2.2120799999999994, 2.122379999999999, 3.1785000000000085, 2.464800000000011, 1.9219200000000027, 1.300259999999998, 1.1957400000000025, 1.2160200000000128, 0.7382700000000009, 1.1660999999999992, 0.6641700000000093, 0.8993400000000058, 1.408680000000011], [0.0, -0.9870899999999998, -0.6119100000000013, 1.432469999999996, 1.04052, 1.625130000000003, 0.6559800000000005, 0.6485699999999994, 0.704340000000002, 1.7074200000000035, 1.9406400000000028, 1.4273999999999951, 1.0385699999999973, 1.354469999999993, 1.4125800000000028, 0.7293000000000003, 1.7417399999999983, 2.4094200000000034, 1.9929000000000006, 0.8548800000000014, 0.6774299999999949, 0.41652000000000333, 0.32409000000000354, -1.0413000000000014, -0.8989499999999966, -0.30380999999999814, 0.037050000000002026, 1.1969099999999937, 0.5748599999999993, 0.5186999999999982, -0.0783899999999993, -0.03392999999999757, 0.4722900000000001, 1.5404999999999962, 1.5397199999999955, 2.4772799999999933, 2.839590000000002, 2.7323400000000024, 2.547869999999995, 2.3618400000000026, 2.242889999999999, 3.328649999999996, 2.61651, 1.7202900000000039, 1.347059999999999, 1.53465, 2.576729999999997, 2.389140000000002, 2.9994900000000015, 2.8758599999999994, 1.8798000000000066, 2.647319999999999, 2.3072399999999984, 2.5361700000000003, 1.8688800000000034, 1.1891099999999977, 1.1290499999999968, 1.2043200000000027, 1.3053300000000014, 1.5245099999999967, 2.1048300000000033, 2.059590000000001, 2.3306399999999963, 2.701919999999995, 0.04484999999999717, -0.39351000000000136, 0.09555000000000069, 0.9921600000000002, 1.2300600000000017, 1.4679600000000015, 1.8154499999999976, 2.178930000000001, 2.051789999999996, 1.91451, 1.5603900000000026, 2.5307099999999965, 2.8161899999999953, 1.8287099999999965, 0.43563000000000107, 0.41691000000000145, 0.7277400000000007, 1.0721100000000012], [0.0, -0.5612099999999989, 0.6006000000000025, 0.947310000000001, 0.6072299999999993, 0.8736000000000004, -0.22893000000000185, 0.854100000000001, 0.4913999999999994, 0.4547400000000006, 0.20591999999999988, 0.8732100000000023, 1.3026000000000024, 0.5261099999999992, -0.13025999999999893, 0.10686000000000084, 0.545610000000001, 1.3353600000000025, 0.9578400000000002, 1.175460000000003, 1.272180000000002, 0.8724300000000016, 0.5799300000000025, 0.4461600000000012, 0.24648000000000136, 0.5526300000000008, 1.6407299999999998, 0.987870000000002, 0.8158800000000002, 1.4402700000000015, 0.8689200000000026, 0.3139499999999986, 0.8190000000000006, 1.041690000000002, 1.493310000000003, 1.2963600000000015, 1.6703699999999986, 1.2269400000000033, 1.3072800000000024, 1.6095299999999975, 1.6684200000000013, 1.4722499999999983, 1.9074900000000017, 1.27179, 1.2784200000000008, 1.5389400000000026, 2.3852400000000022, 1.6727099999999993, 1.488629999999999, 0.8615099999999993, 0.9445800000000018, 0.8552699999999971, 0.90675, 0.6766500000000002, 0.7831200000000009, 0.8034000000000019, 1.4695200000000026, 1.6964999999999988, 2.768609999999999, 1.8603000000000043, 1.58769, 1.7284799999999982, 2.409029999999997, 2.514330000000003, 1.2031500000000015, 0.7351500000000002, 0.24375000000000058, -0.4481100000000007, 0.671970000000002, 0.9594000000000051, 0.6739200000000005, 0.6368700000000012, 0.08034000000000097, 0.20201999999999964, 0.9648600000000023, 1.4457300000000022, 1.023360000000001, 0.45279, -0.5518499999999994, 0.8841300000000005, 1.0756200000000005, 0.9281999999999992], [0.0, -1.0023000000000009, -0.32370000000000054, 0.6696300000000042, 0.21684000000000125, -0.009749999999999481, -0.8186099999999987, -0.44459999999999944, -0.2624700000000022, 0.04835999999999796, 0.6251700000000016, 0.7671300000000025, 0.45084000000000124, 0.1595099999999965, 0.26754000000000566, 0.27572999999999936, 0.7729800000000004, 0.6364800000000015, 0.7316399999999961, 0.47697000000000234, -0.7476299999999982, -0.7905299999999906, -0.9281999999999977, -1.5420599999999984, -1.386059999999997, -0.667679999999998, -0.028859999999995445, 0.5818800000000035, 0.3342299999999998, 0.36075000000000035, 0.10179000000000382, -0.11777999999999533, -0.16925999999999775, -0.45786000000000016, 0.5272799999999984, 1.3182000000000023, 1.8942299999999999, 1.7097599999999966, 1.3595400000000022, -0.08813999999999833, 0.9036300000000006, 0.7967700000000031, 1.0366199999999988, -0.23126999999999942, -0.5444400000000007, -0.6005999999999947, 0.12090000000000067, 0.7901400000000063, 1.5186600000000037, 2.227679999999998, 1.8423600000000033, 2.919540000000002, 2.4862500000000005, 0.8615100000000036, 0.7893600000000012, 0.06512999999999636, -0.1817399999999978, -0.1318199999999976, 0.7230599999999967, 1.0927800000000016, 1.2546299999999975, 1.450410000000001, 1.4937000000000022, 1.4933100000000015, 0.6700199999999992, 0.8049600000000003, 0.21255000000000202, -0.4676099999999952, 0.12207000000000257, 0.327989999999998, 0.7273499999999968, 0.4785300000000037, 0.09477000000000046, -0.13649999999999718, 0.048750000000003624, 0.7464600000000079, 1.0561200000000008, 0.634529999999998, -0.0631800000000009, -0.3256500000000031, 0.2788500000000056, -0.9671999999999956], [0.0, -0.24257999999999935, 0.17355000000000098, 0.6290700000000027, 0.03978000000000259, -0.39194999999999913, -0.6380399999999993, 0.45084000000000435, 0.8638500000000016, 1.0069800000000022, 1.5642900000000046, 1.1407500000000015, 1.3193699999999993, 1.5873000000000066, 0.626730000000002, -0.15716999999999826, 0.14430000000000076, 0.35295000000000254, -0.19967999999999786, -0.2675399999999992, 0.09750000000000192, -0.7433399999999992, -0.6041099999999979, -0.9827999999999986, -1.0167299999999988, 0.28275000000000405, 1.089270000000003, 1.061580000000001, 0.9289799999999984, 0.5101200000000032, 0.5522400000000016, 0.5148000000000019, 0.6903000000000019, 0.08697000000000132, -0.3954599999999979, -0.039389999999998704, -0.029639999999999667, 0.6294599999999999, 0.8474700000000008, 0.20943000000000023, 0.19071000000000327, 0.5658900000000013, 0.5534100000000004, 0.6961499999999994, 0.05109000000000119, 0.6938100000000027, 1.5798900000000033, 2.4960000000000013, 1.9254299999999986, 1.621620000000005, 1.7058600000000017, 1.809210000000002, 1.115400000000002, 0.8899800000000004, 0.060840000000001115, 0.37517999999999674, 0.4446000000000012, 0.355290000000001, 0.34788000000000263, 1.2261600000000015, 1.4008800000000012, 1.8142800000000023, 2.4281400000000017, 2.4780599999999993, 2.1559200000000036, 0.16380000000000194, -0.7269599999999965, -0.5456100000000004, 0.29094000000000353, 0.7082399999999995, 0.38805000000000023, 0.22659000000000296, 0.8178300000000029, -0.13922999999999908, 1.122810000000003, 2.0124000000000013, 0.9375600000000013, -0.23984999999999945, -0.545219999999998, -0.3416399999999975, -0.1228499999999988, -0.04328999999999894], [0.0, -0.0744900000000005, -0.21216000000000065, 0.08267999999999892, 0.06044999999999995, 0.8182199999999983, -0.4391400000000006, 0.39272999999999914, 1.199250000000001, 2.0205899999999986, 1.2698400000000007, 2.9203200000000002, 2.5720499999999995, 1.9371300000000002, 1.8454799999999993, 1.9351800000000008, 2.1098999999999997, 2.5408499999999994, 2.0744099999999968, 2.3006100000000016, 1.4956500000000013, 1.1785799999999989, 0.02222999999999986, 0.2768999999999995, 0.9562799999999992, 1.3107900000000003, 2.3595, 2.679690000000001, 2.0603700000000003, 1.6376099999999987, 1.607579999999997, 2.174640000000001, 1.5678000000000005, 1.03701, 1.9074899999999984, 2.05101, 2.002649999999999, 1.159469999999998, 1.1072099999999985, 0.476189999999998, 1.3571999999999989, 2.23353, 2.4967799999999993, 1.9000799999999973, 0.858389999999997, 1.132559999999999, 1.8790199999999984, 2.4039600000000005, 3.109469999999998, 3.854759999999997, 4.50177, 4.831320000000002, 3.6129599999999966, 2.79123, 2.112240000000002, 1.1017499999999987, 0.23868, 0.9367799999999981, 2.2128600000000027, 2.9039399999999977, 3.4015800000000005, 3.772079999999997, 4.26348, 4.086809999999998, 3.336840000000002, 2.3844600000000007, 1.1653199999999981, 0.41924999999999923, 0.8751599999999989, 1.5619500000000004, 2.556449999999999, 2.26824, 1.5116400000000003, 1.620839999999999, 1.4948699999999993, 2.7557399999999994, 1.934400000000002, 0.896999999999999, 0.9828, 1.1220299999999983, 1.5845700000000007, 0.6009900000000005], [0.0, -0.19695000000000107, 0.7924799999999976, 0.5089499999999951, 0.15365999999999058, 0.1084200000000024, 0.7047300000000023, 0.7480200000000048, 0.2819699999999967, 1.1341199999999985, 1.8107700000000007, 1.3022100000000032, 1.2160200000000003, 1.1458199999999978, 0.11739000000000388, -0.9566699999999972, -0.8369399999999967, 0.29679000000000233, 0.9340500000000063, 1.2480000000000002, 1.505790000000002, 0.7484100000000007, 0.028470000000002216, 0.21917999999999704, 0.15716999999999537, 1.0494900000000014, 1.3728000000000007, 1.035839999999995, 1.0775699999999961, 1.517879999999999, 1.7842499999999957, 1.6091399999999991, 0.8907600000000029, 0.7862400000000029, 1.4145300000000045, 1.5054000000000007, 1.536990000000002, 1.1317799999999965, 1.1302200000000058, 1.000349999999992, 0.33072000000000124, 0.5444399999999945, 1.2421499999999934, 1.708589999999993, 1.3513499999999974, 1.7577300000000031, 2.0888400000000003, 2.345069999999999, 1.448459999999998, 1.2659399999999996, 1.2983099999999936, 1.2051000000000034, 0.629459999999999, 0.714090000000005, 0.8985600000000042, 0.9453599999999884, 1.5252899999999974, 1.2409799999999986, 0.7374899999999993, 0.7979400000000005, 1.3540800000000006, 1.109159999999994, 2.1500700000000057, 2.11029, 1.609919999999991, 1.10058, 0.7803899999999935, 0.7862400000000012, 1.526459999999985, 0.8642400000000032, 1.5951000000000048, 1.0724999999999918, 0.8997299999999981, 0.9792900000000078, 2.322059999999989, 2.03658, 0.8599500000000022, -0.06279000000000323, 0.48828000000000493, 0.9898199999999973, -0.15015, -0.16262999999999472], [0.0, 0.4106700000000014, -0.7920899999999969, -0.30732000000000026, -0.7183800000000007, -0.6774300000000038, -0.43055999999999806, 0.6598800000000016, 1.2772500000000009, 1.7542200000000008, 1.6013400000000004, 1.4484599999999992, 1.7237999999999998, 0.2445299999999988, -0.5436599999999991, -1.0966799999999979, -0.7121399999999998, -0.24141000000000146, -0.04250999999999916, -0.1965599999999994, -0.3888299999999987, -0.6037199999999983, -1.616939999999997, -1.1076000000000001, -0.12441000000000191, 0.05694000000000132, 0.5939700000000021, -0.21293999999999969, 0.23282999999999898, 0.8849100000000021, 0.9067500000000013, 1.6972800000000008, 1.2312300000000005, 0.7289100000000006, -0.98787, -0.7187700000000006, 0.97929, 0.39702000000000126, -0.3482700000000003, 0.8849100000000005, 0.8037900000000011, 2.2230000000000008, 1.59939, 0.22463999999999995, -0.2768999999999977, -0.40326000000000173, -0.14741999999999944, 1.8786300000000011, 2.1719100000000005, 2.8489500000000003, 2.83998, 3.1344300000000005, 3.10869, 2.2737000000000003, 1.8786299999999994, 0.6466200000000011, 0.4563000000000006, 0.8080800000000019, 2.1765900000000005, 1.5050100000000008, 1.4812200000000004, 2.0615399999999995, 3.27834, 3.5856600000000025, 2.8048800000000003, 1.7202900000000003, 1.4827800000000004, 0.526889999999999, 0.6575400000000029, 1.0686000000000009, 0.9336600000000026, 0.7854600000000007, 0.7636200000000009, 1.2569700000000004, 1.8930600000000004, 1.6649100000000001, 1.3774800000000014, -0.14157000000000108, -0.4270500000000004, 1.2113400000000014, 1.1645400000000008, 0.7655700000000005], [0.0, -0.07292999999999936, 0.16263000000000083, 1.2698400000000012, 0.8829600000000007, 0.4106699999999994, -0.2979600000000005, 0.7917000000000012, 1.0003499999999992, 1.0323300000000004, 1.943760000000002, 2.2116900000000026, 1.3872300000000002, 0.11700000000000066, -0.07409999999999915, -0.38921999999999957, -0.3112199999999988, 0.866970000000001, 1.0409100000000007, 0.052260000000000334, 0.10842000000000082, 0.973440000000002, 0.8213400000000006, 1.14114, 1.99017, 1.3158600000000011, 0.8735999999999997, 1.7846400000000004, 0.8369400000000009, 0.581100000000002, 1.450410000000002, 1.9675499999999988, 2.182440000000001, 1.8801900000000016, 1.9067100000000003, 2.3150400000000024, 1.6368300000000002, 2.010450000000001, 1.456650000000001, 1.1887200000000009, 1.625910000000001, 1.3330200000000016, 2.1793200000000037, 2.2452299999999994, 2.8867799999999995, 2.4663599999999994, 2.197650000000003, 1.996800000000003, 1.7187300000000012, 1.2339600000000015, 1.6052400000000007, 1.5806699999999996, 1.2803700000000013, 1.319370000000001, 0.9578400000000004, 0.27767999999999987, 1.0331100000000006, 0.20709000000000072, 0.6544200000000013, 0.9917700000000013, 1.2819300000000018, 0.8412300000000007, 1.091610000000001, 1.1462100000000008, 0.35763000000000084, 0.6711900000000006, 1.106430000000001, 1.3630500000000016, 1.7725500000000003, 2.6726700000000023, 2.0806500000000034, 1.1637600000000012, 1.15869, 0.98046, 1.3427700000000025, 0.6563700000000005, 0.4083300000000012, -0.4364099999999983, 0.583440000000001, 1.4001000000000006, 0.9348300000000004, 0.6949800000000013], [0.0, -0.5159699999999985, -0.5077799999999977, -1.3232699999999973, -0.5296199999999986, -0.1294800000000027, -0.23088000000000264, 0.12792000000000048, 1.028820000000004, 2.1173100000000007, 2.128620000000005, 2.341169999999999, 1.51788, -0.1041300000000076, 0.3112199999999934, -0.2336099999999952, 0.3935099999999885, 0.26091, 1.282710000000006, 0.4473300000000098, -0.1322100000000006, 1.0701600000000004, 1.0767900000000106, 1.6937700000000007, 2.5825799999999983, 2.6375700000000033, 1.3127399999999971, 1.395030000000001, 0.9886500000000007, 0.2137200000000039, 0.26870999999999867, 0.7585499999999978, 0.8427900000000035, 0.6610500000000012, 0.33501000000000314, -0.03666000000000125, 0.23867999999999956, 0.23283000000000342, 0.39312000000000413, 0.18836999999999726, 0.08579999999999988, 1.2663299999999973, 2.1309600000000035, 1.878630000000002, 2.2799400000000016, 2.172690000000003, 1.7589000000000015, 1.6809000000000047, 1.8681, 2.192580000000002, 2.2565399999999975, 2.839979999999998, 3.1270200000000057, 2.9015999999999975, 0.9870900000000047, 0.48671999999999915, 0.43718999999999575, 0.40131000000000583, 0.5222099999999967, 0.6528600000000004, 1.567410000000006, 2.1356400000000013, 2.3361000000000045, 2.919540000000001, 1.963650000000003, 1.1703900000000012, 1.959749999999997, 1.931280000000001, 1.2647699999999986, 0.598650000000001, 0.16653000000000073, 0.4375800000000032, 0.7878000000000016, 0.9098700000000104, 0.04680000000000373, -0.6407699999999936, -1.4235000000000024, -0.879059999999992, -0.3424199999999997, 0.49022999999999417, 0.026520000000003208, 1.025699999999997], [0.0, 0.3353999999999995, 0.9945000000000003, 0.4477199999999988, 0.66768, 0.7347600000000013, 0.009749999999999925, 0.444600000000001, 1.62513, 1.6099199999999985, 1.43715, 1.23279, 0.34982999999999986, 0.7589399999999997, 0.12245999999999979, -0.6871800000000008, -0.20747999999999833, 0.5982600000000008, 1.2577499999999997, 0.8794500000000008, 1.6828499999999986, 1.8396299999999992, 1.1009699999999998, 1.9032, 0.5218199999999986, 1.0935600000000003, 0.35139000000000165, 0.9617399999999996, 1.4118, 1.7152199999999989, 2.7280499999999988, 2.719859999999998, 3.155880000000001, 2.4948299999999994, 2.5065299999999993, 2.908620000000001, 2.4449099999999997, 2.3813400000000002, 2.0416499999999993, 1.2920699999999998, 2.52993, 2.1075599999999994, 2.465190000000002, 3.1086899999999984, 2.8477799999999998, 2.0334600000000003, 2.56737, 3.1235099999999996, 1.85679, 2.1313500000000003, 2.138369999999999, 1.4090699999999996, 1.16259, 1.3856699999999995, 1.74135, 1.2421499999999996, 1.5888599999999993, 1.0155600000000002, 0.6130799999999998, 0.9664199999999994, 0.9231299999999998, 0.7885799999999995, 1.2351299999999998, 1.3365299999999993, 1.33575, 1.1520599999999999, 0.7686899999999984, 1.6266900000000002, 2.7038699999999993, 2.900430000000001, 2.7331200000000004, 2.0256599999999993, 2.19102, 1.7288700000000001, 1.7737199999999997, 2.022540000000001, 0.94068, 0.2963999999999998, 0.5877300000000006, 0.8950499999999999, 0.8673599999999998, 0.8642400000000005], [0.0, -1.399319999999999, -1.405559999999999, -1.1715599999999993, -1.069379999999999, -1.1122799999999988, -0.4964699999999993, -0.8677499999999995, -0.1887599999999987, 0.9324900000000023, 1.4886300000000023, 1.0358400000000019, -0.48086999999999935, -1.2534599999999994, -1.8236399999999993, -1.0241399999999994, -0.7991099999999989, -0.2632499999999992, -0.40793999999999886, -0.886079999999999, -0.5814899999999987, 0.774930000000001, 1.1122799999999993, 0.9570600000000007, 1.8922800000000009, 1.3068900000000006, 1.257750000000002, 2.098200000000002, 0.5304000000000024, 0.28704000000000085, 0.416130000000001, 0.19500000000000206, 0.9878700000000011, 0.8080799999999995, 1.058850000000001, 0.3162900000000013, 0.18213000000000013, -0.3143399999999993, -0.3482699999999981, 0.34281000000000184, 0.6949800000000033, 0.3045899999999999, 1.575600000000005, 1.6181100000000033, 1.5042300000000006, 1.2421500000000014, 1.4816100000000043, 1.2866100000000005, 1.7238000000000024, 2.2101299999999995, 1.904760000000001, 1.9340100000000033, 1.5919800000000008, 1.686360000000001, 0.5655000000000012, -0.05654999999999932, 0.21294000000000146, -0.2347799999999992, 0.29523000000000055, 0.6236100000000004, 0.5772000000000026, 0.9313200000000019, 0.9313200000000004, 1.0662599999999995, 1.2487800000000022, 1.0760099999999992, 2.1017100000000006, 1.6450200000000006, 1.5373800000000015, 1.3353600000000019, 0.3182400000000014, 0.39117000000000024, 0.5584800000000014, 0.3393000000000008, 0.86385, 0.9660300000000008, 0.06942000000000048, -0.9122099999999994, -0.3892199999999991, 0.9172800000000012, 1.141919999999999, 1.1797499999999994], [0.0, -1.7967299999999957, -1.7670899999999996, -1.9304999999999986, -1.2756900000000035, -1.981589999999998, -2.015129999999999, -2.2385999999999946, -1.8372899999999994, -1.0771799999999967, 0.07371000000000505, -0.6302400000000006, -0.85059, -1.184820000000002, -2.1321299999999974, -2.9172000000000002, -2.5552799999999927, -2.257319999999999, -1.3614900000000008, -1.331459999999999, -1.4043899999999985, -0.6778199999999979, 0.1622400000000006, -0.1220699999999999, 0.6286800000000015, -0.503099999999999, -0.688739999999997, -1.6485299999999983, -0.42470999999999925, -0.8443499999999968, -0.05693999999999777, 0.30693000000000215, 0.4278300000000006, 0.5031000000000025, 0.8151000000000015, 0.7339800000000007, -0.1251900000000008, -1.013999999999999, -1.0342800000000016, -0.8958300000000015, -2.1875099999999996, -1.4496299999999964, -1.083420000000002, 0.18876000000000426, -0.2659799999999972, -0.6275099999999973, -0.1396200000000003, 0.15366000000000035, -0.17978999999999434, -0.6860099999999956, -0.42743999999999804, -0.9434099999999974, -1.3954200000000014, -0.9554999999999962, -0.503100000000003, -0.9356099999999983, -1.8505499999999948, -1.389179999999997, -0.9071399999999965, -0.5112899999999989, -1.4804399999999998, -1.80999, -1.4550899999999984, -1.1809200000000013, -1.4184299999999954, -1.751489999999996, -0.6232199999999968, -0.30458999999999525, -0.9223499999999998, -0.3634799999999969, -0.39897000000000027, -0.47345999999999977, -0.4297799999999987, -0.6836700000000002, -0.5448300000000024, -0.4765800000000029, 0.8232900000000019, -0.6052799999999965, -2.033459999999998, -1.8380699999999948, -1.4020499999999938, -1.325219999999999], [0.0, 0.2203499999999996, 0.14858999999999967, -0.16302000000000041, -1.2086100000000013, -1.3068900000000006, -1.2058799999999996, -0.6676800000000018, -1.4274000000000002, -0.07527000000000064, 0.8026199999999998, 1.8743399999999992, 0.58929, -0.5062200000000003, -0.9137700000000003, -1.23279, -1.1458199999999994, -1.1403600000000023, -0.3513900000000001, -0.20670000000000008, -0.03120000000000056, 0.9020700000000005, 1.0510499999999987, 2.4858600000000006, 2.7709499999999982, 2.9148600000000022, 2.4020100000000015, 1.7218500000000003, 1.0682099999999999, 1.1536200000000003, 0.6384299999999999, 0.6762599999999999, 1.29987, 1.5525900000000004, 1.1235900000000005, 0.9480899999999997, 0.24023999999999995, 0.12362999999999984, 0.3510000000000001, -0.09711, -0.0425100000000003, 0.8084699999999999, 0.7300799999999996, 0.5475599999999999, 0.4839899999999999, 0.6622199999999999, 0.10412999999999996, 1.4730300000000018, 1.5354300000000005, 1.4656200000000004, 0.9301500000000001, 0.4067699999999995, 0.6544199999999996, 0.5467799999999999, 1.234350000000001, 0.8041799999999996, 0.05499000000000029, -0.08033999999999938, 0.5935799999999993, 0.6649499999999997, 0.8232899999999996, 0.15326999999999985, 0.3443699999999995, -0.42432000000000025, -0.12362999999999993, -0.04991999999999949, 0.13454999999999934, 0.5647199999999999, 0.8225099999999999, 0.7799999999999997, 0.8732099999999996, 0.6224399999999998, 0.8342100000000008, 1.42194, 1.4277900000000008, 1.290510000000001, 1.15167, 0.8345999999999995, 0.07722000000000032, 0.023009999999999475, 0.2581799999999996, 1.01049], [0.0, 0.5460000000000029, -0.16379999999999884, 0.23088000000000264, 0.6255600000000019, -0.3552899999999992, -1.2105599999999987, -1.4114100000000005, -1.3829400000000027, -0.8923199999999984, -1.5245099999999945, -1.3802100000000013, -0.5686199999999988, -2.360669999999995, -2.139930000000001, -2.5307099999999987, -3.1433999999999958, -2.2752599999999954, -0.9449699999999952, -0.5732999999999984, 0.14508000000000232, 0.48476999999999837, 0.8295300000000012, 0.830700000000002, 0.2850900000000043, -0.3880499999999967, -1.2011999999999987, -0.7546499999999963, -0.16769999999999774, 0.15015000000000223, 0.9449700000000012, 0.8697000000000021, 1.0214100000000008, 0.21450000000000058, 0.11894999999999945, -0.13220999999999528, 0.38844000000000145, -1.4437800000000007, -1.4301299999999997, -1.5506399999999991, -1.4309099999999968, -1.474589999999997, -0.6840599999999966, -0.6473999999999993, -0.8693099999999969, -0.7838999999999956, -0.9434100000000005, -0.8154899999999947, -1.019069999999997, -1.2791999999999981, -1.759289999999997, -2.0818199999999947, -1.0877099999999982, -0.3174600000000001, -1.1337299999999977, -2.0065499999999994, -1.0253100000000028, -0.6407699999999981, -0.3603600000000009, -1.1036999999999972, -1.056899999999998, -1.84353, -1.4199899999999936, -1.013609999999999, -1.3353599999999992, -1.6497000000000006, -1.1228099999999994, -1.2113399999999994, -0.973049999999998, -0.26324999999999665, -0.874379999999999, 0.4325100000000015, 0.9683700000000024, 0.43212000000000295, 0.6906900000000014, 1.3357500000000018, 0.8041800000000014, -0.17354999999999787, -0.7628399999999984, -1.430909999999995, -1.0284299999999997, -0.6532499999999999], [0.0, -0.43367999999999896, -0.5354699999999988, 0.4122299999999979, -0.6821100000000029, -1.6477500000000016, -1.7226300000000063, -1.7639700000000018, -1.7191200000000015, -1.0912199999999985, -0.10413000000000139, 0.2562299999999995, -0.20709000000000044, -0.9777300000000042, -2.1099000000000028, -2.293200000000003, -1.8548399999999998, -1.7206800000000047, -0.6337499999999996, -0.8096400000000012, -0.5393700000000021, -0.2453100000000048, 0.742170000000002, 0.6107399999999985, 0.4839899999999986, -0.15015000000000533, -0.7304700000000071, -0.09126000000000278, 0.6013799999999985, 0.5073899999999996, 1.2768599999999974, 1.3681199999999993, 0.42470999999999703, 0.6957599999999982, 0.5935799999999976, 0.7016099999999965, 0.45161999999999747, -0.23165999999999887, -1.607190000000006, 0.0039000000000002366, -1.414140000000001, -1.0565100000000007, -0.07293000000000349, -0.10919999999999952, -1.555710000000007, -1.0089300000000008, -0.6064500000000028, -0.26208000000000053, 0.4426499999999973, 0.1735499999999961, 0.5257200000000006, 0.3135600000000016, -0.6762600000000041, -0.20202000000000098, 0.3997499999999974, -0.009359999999999591, -0.3412500000000005, -1.0186800000000003, -0.5397600000000038, -0.90558, -0.600210000000001, -0.7979400000000001, -1.68636, -1.3466699999999965, -1.8556200000000014, -1.5327000000000015, -1.139580000000008, -1.3061100000000008, -0.5226000000000002, 0.20163000000000153, 0.11192999999999609, -0.36036000000000223, 0.23867999999999556, 0.6653399999999996, 0.5596500000000018, 1.1859899999999994, 0.6715799999999983, 0.8396699999999981, -0.40482000000000173, -0.914160000000003, 0.015989999999998172, -0.45708000000000926], [0.0, 0.26285999999999854, 0.3599700000000001, -0.46487999999999907, -0.6739200000000061, -1.5564899999999975, -1.9780800000000003, -1.6961099999999973, -1.9421999999999997, -1.3837200000000012, -1.3326300000000098, -1.512030000000002, -2.4211199999999993, -2.671890000000003, -2.7081599999999986, -3.0459000000000005, -2.283450000000003, -2.2514700000000047, -1.9581900000000019, -1.5982199999999969, -0.4855500000000035, -0.18057000000000034, -0.9301500000000011, -0.6236100000000047, 0.12167999999999868, -0.3584100000000001, -1.5974399999999953, -1.65048, -1.5159299999999938, 0.26597999999999855, 0.882569999999999, 0.5097299999999994, 0.18407999999999713, 0.6470099999999985, 0.3092699999999984, -0.35060999999999964, -0.4902299999999995, -0.5697900000000056, -1.3860600000000058, -0.7265699999999988, -1.3423799999999986, -0.8217300000000041, -0.6146400000000014, -1.1282700000000014, -1.7889299999999961, -2.190629999999998, -1.0744499999999997, -0.2624700000000031, -0.8611200000000023, -0.07176000000000471, -0.8946600000000009, -0.5986499999999984, -0.9246900000000036, -1.1824800000000035, -0.6298500000000038, -1.5670199999999976, -1.8146700000000004, -1.374360000000002, -0.6520799999999989, -1.175460000000009, -2.178930000000001, -2.0053800000000015, -1.9289400000000017, -2.1836099999999963, -1.83066, -1.1150100000000025, -0.3357899999999967, -0.3369599999999995, 0.06863999999999848, -0.15483000000000224, 0.18564000000000025, -0.46293000000000273, -0.0694200000000027, 0.13454999999999906, 0.06005999999999645, 0.04913999999999774, -0.35412000000000354, -0.8303100000000052, -0.7215000000000042, -1.2741299999999995, -1.1641499999999994, -0.6150299999999955], [0.0, 0.2811899999999983, -0.4122299999999979, -0.10178999999999538, -0.2449200000000018, -0.48983999999999916, -0.9535500000000017, -1.836119999999998, -1.8774599999999952, -2.0588100000000007, -1.2218700000000005, -1.136069999999998, -0.8478599999999963, -1.1189099999999974, -1.6730999999999985, -1.9016399999999982, -1.7752800000000017, -2.032680000000004, -0.9410699999999976, -0.8782800000000011, -1.0955100000000018, -1.415310000000002, -0.5327399999999973, 0.06747000000000059, -0.055769999999997655, -1.1832599999999984, -1.52256, -2.256150000000004, -1.491359999999998, -0.12167999999999868, 0.8423999999999987, 1.0299900000000028, 0.5842200000000011, 0.8478599999999981, 0.6271200000000001, 0.7152600000000038, 0.6559800000000031, 0.1735500000000041, 0.3100500000000017, -0.4145700000000003, -1.150889999999999, -1.0085399999999973, -0.5319599999999971, -0.354119999999996, -1.3213199999999978, -1.2667199999999954, 0.13376999999999795, 0.0998400000000017, 0.3923399999999977, 0.15561000000000025, -0.3822000000000001, -1.2526799999999976, -1.2967500000000007, 0.08930999999999978, -0.23087999999999687, -0.11427000000000254, -0.839280000000004, -0.9207900000000029, -0.9987900000000018, -0.39116999999999935, -0.2909400000000022, -1.707809999999998, -2.4690899999999893, -2.5763400000000005, -1.9995299999999987, -1.3341899999999982, -0.9336599999999979, -0.14858999999999556, 0.680550000000002, -0.8556600000000008, -0.7519200000000006, -0.2059199999999981, 0.9098700000000033, 1.6005600000000022, 0.6906900000000031, 0.33618000000000237, -0.46760999999999564, -0.9036299999999979, -0.5467800000000023, -0.9215700000000009, -0.32409000000000177, 0.6150300000000049], [0.0, -0.8170499999999992, -0.5319599999999982, -0.8732099999999989, -0.576420000000001, -0.9488700000000017, -1.173509999999998, -1.6606200000000038, -0.9044100000000013, -0.9792899999999984, -0.21878999999999982, -0.5732999999999997, -1.072890000000002, -1.7323799999999983, -2.186339999999996, -2.5591799999999956, -1.7842500000000028, -1.996409999999997, -1.5401099999999985, -1.1933999999999996, -1.1072100000000016, -0.3084900000000015, -0.49062000000000006, -0.5023199999999992, 0.09866999999999981, -0.19539000000000084, -0.360749999999999, -0.37283999999999984, 0.020669999999999078, 0.7273500000000002, 0.9102600000000001, 0.9539399999999996, 1.2199200000000008, 0.2866500000000004, -0.4875000000000005, -1.0670399999999982, -1.107990000000001, -0.8806199999999982, -1.0179, -1.4223299999999979, -1.0884900000000002, -0.708240000000002, -1.4383200000000005, -1.9812000000000025, -1.3142999999999967, -1.5716999999999999, -0.5682300000000009, -0.20552999999999932, -0.46955999999999976, -0.5690099999999998, -0.2304900000000003, -0.8704800000000001, -0.5713500000000005, -1.447290000000001, -1.226939999999996, -1.4777099999999992, -0.7242300000000017, -0.8915400000000009, -2.409809999999999, -3.2479200000000006, -2.873520000000002, -2.1964800000000015, -1.8259799999999973, -1.6731000000000007, -0.5740800000000013, 0.28508999999999973, 0.5167500000000004, 0.8057399999999999, 2.008890000000002, 0.9593999999999998, 0.412230000000001, 0.8548800000000001, 0.7417800000000006, 0.15678000000000059, -0.07058999999999971, -0.08073000000000086, -1.0955100000000013, -1.5081300000000009, -0.957060000000002, 0.12518999999999902, -0.2866499999999992, -0.9258600000000023], [0.0, 0.03743999999999986, -0.2964000000000009, -0.2683200000000002, -0.5752500000000002, -0.7265700000000003, -0.8841300000000006, -0.8190000000000014, -1.1446500000000002, -1.2756900000000002, -1.1555699999999995, -0.7593300000000006, -1.3642200000000035, -1.36929, -1.9550699999999999, -1.9344000000000003, -1.9597500000000012, -1.6056300000000006, -0.8525400000000009, 0.3704999999999996, 0.30302999999999963, 0.5775899999999995, 1.2023699999999997, 0.04172999999999977, -1.1719500000000016, -0.05460000000000062, -0.7749300000000011, -0.8915400000000012, -0.2948400000000013, 0.5183099999999997, 0.7152599999999998, 0.47579999999999933, 0.20513999999999968, 0.15989999999999976, 0.06590999999999958, 0.40091999999999983, 0.3018599999999994, 0.06356999999999932, -0.5179200000000006, 0.06551999999999938, -0.2808000000000018, -0.5592600000000011, -0.6076200000000008, -1.3205400000000027, -0.0023400000000001753, -0.4098900000000003, -0.3217500000000003, -0.013650000000000245, 0.15677999999999973, 0.7667400000000001, -0.6844500000000016, -0.38142000000000065, -2.186729999999998, -1.8583500000000017, -1.79946, -1.8864300000000005, -2.25069, -0.8088600000000005, -0.6064499999999997, -0.4898400000000014, -0.5502900000000011, -1.0806900000000013, -0.6922500000000004, -1.7581199999999995, -0.9555000000000012, -0.26091000000000086, 0.46916999999999887, 0.8817899999999996, 0.9098699999999991, 0.11543999999999943, -0.27690000000000026, -0.01638000000000081, 0.4379699999999992, -0.2086499999999997, -0.35646000000000033, -0.37010999999999994, -0.7293000000000012, -0.9024600000000004, -0.9149400000000011, -0.7589400000000016, -0.38727000000000034, -0.29718000000000067], [0.0, 0.6321900000000018, 0.5300100000000012, 0.48554999999999815, 0.8946599999999956, 0.526889999999999, 0.02066999999999819, -0.7152599999999998, -0.4106699999999961, 0.06746999999999748, 0.4952999999999994, -0.3151200000000012, -1.3653899999999988, -1.0838099999999988, -2.8029300000000026, -1.7928300000000013, -0.9083099999999975, -1.1563499999999998, -0.8973899999999997, -0.1119299999999992, 0.2285399999999962, 0.6282900000000007, 0.176669999999997, 1.347449999999999, 0.8189999999999991, 0.9796799999999966, 0.26637000000000066, 0.016770000000002838, 1.1212499999999994, 1.25229, 0.6493500000000005, 1.8782400000000017, 1.2429299999999999, 0.3794699999999964, 1.048710000000002, 0.7772699999999997, 0.4586399999999964, 1.0046399999999993, 0.9449699999999992, 0.7624500000000007, 0.5155800000000008, 0.07293000000000482, 0.5350799999999967, -0.44888999999999957, -0.4960799999999992, -0.5557499999999997, 0.27065999999999724, 0.8330399999999982, 0.3732300000000004, 0.7573799999999995, 0.6516899999999999, 1.1516699999999993, -0.032759999999997014, -0.3712799999999996, 0.01949999999999985, -1.4433899999999955, -1.1208600000000013, -0.8268000000000004, -0.8700900000000003, -0.8841300000000007, -1.2167999999999948, -0.6321900000000031, -0.9313199999999977, -0.2570099999999993, 0.6470100000000012, 0.7831199999999998, 1.1224199999999982, 1.2581400000000036, 1.2542399999999994, 1.3252199999999954, 1.2402000000000029, 1.3197599999999983, 1.4153099999999998, 0.8502000000000001, -0.19149000000000171, -0.08619000000000643, -0.3096600000000018, 0.37907999999999564, -0.26441999999999943, 0.24530999999999636, 0.2952299999999948, -0.8037900000000002], [0.0, 0.1766700000000001, 0.32096999999999887, -0.1064700000000004, -0.9976200000000003, -0.8006700000000007, 0.23517000000000032, -0.5062200000000001, -0.4329000000000004, 0.19889999999999963, 1.265549999999999, 1.1255400000000024, -0.022619999999999862, -0.28002000000000005, -1.460550000000001, -0.4227600000000006, -0.1478100000000001, 0.469559999999998, 1.5077399999999994, 1.2242099999999996, 1.5217800000000012, 1.4675699999999956, 1.5787199999999972, 0.9644699999999997, 0.7242299999999999, 0.022229999999999528, -0.23399999999999999, -0.8950500000000002, -0.24843000000000048, 0.7172099999999999, 1.305329999999999, 1.3357499999999989, 0.6567600000000016, 0.09165000000000023, 0.5865600000000009, 1.3490099999999987, 0.6216600000000001, 0.7554300000000003, 1.7144399999999986, 0.881009999999999, 1.3037700000000003, 0.11778, -0.06669000000000058, -0.0795600000000003, 0.031589999999999896, -0.04406999999999994, 0.6126900000000004, 0.7994999999999994, 0.9800700000000009, 1.0740600000000018, 0.8743800000000015, 0.7203300000000004, 0.2324400000000002, -0.9707100000000005, -1.18833, -1.3185900000000006, -1.5572700000000004, -0.6622200000000009, 0.05459999999999965, 0.07214999999999971, 0.7382699999999998, 0.544049999999999, 0.7199400000000007, 0.9902100000000005, 0.8708699999999996, 0.6918599999999995, 1.7464199999999994, 1.93206, 1.4106300000000032, 1.123979999999998, 0.6247799999999999, 1.4851199999999973, 1.2242099999999982, 0.9831900000000007, 0.21761999999999992, 0.3435900000000003, 0.15405000000000002, -0.2320500000000001, -0.5600400000000003, -0.08268000000000031, 0.3814200000000001, 0.04367999999999961], [0.0, -0.3513900000000083, -1.0861500000000053, -0.8927100000000054, -0.5577000000000076, -0.6548100000000074, 0.3018599999999889, 0.02807999999999833, 0.0011699999999965627, 0.17393999999999732, 0.947699999999986, 0.07877999999999297, 0.29405999999999644, -0.9566700000000035, -2.2896900000000038, -1.5954900000000123, -1.2132900000000095, -0.3494400000000013, -0.5916300000000039, -0.30927000000001215, -0.8053500000000007, 0.03509999999999014, 0.24023999999999646, 1.1828699999999923, 1.5993899999999917, 0.5810999999999904, 0.5038799999999952, 0.8045699999999911, 1.0912199999999892, 0.8451299999999948, 1.388009999999996, 1.2651599999999856, 1.1965199999999916, 1.0529999999999964, 1.6247399999999899, 0.3841499999999938, -0.4512300000000051, 0.11192999999999564, 0.4102799999999922, 0.6204899999999922, 0.3763499999999942, 0.2870399999999922, -0.2644200000000092, -0.1439100000000053, -0.24921000000000326, -0.38844000000000367, -0.1337700000000046, -0.12714000000000691, 0.34280999999999207, 0.795209999999992, 1.4468999999999914, 1.1614199999999908, 0.6134699999999942, -0.3841500000000009, -0.6708000000000025, -0.7589400000000026, -0.5452200000000076, 0.05576999999999277, 0.5374199999999894, -0.34865999999999797, -0.07644000000000872, -0.7086300000000083, -0.849809999999998, 0.7690799999999927, 1.0346699999999966, 1.2047099999999924, 2.029169999999991, 2.2830599999999928, 2.313089999999992, 1.3724099999999941, 0.830699999999994, 0.38843999999999745, 0.894269999999989, 0.4481099999999918, 0.31433999999999074, 0.7515299999999918, 1.4679599999999908, 0.9137699999999942, 0.8751599999999913, 0.8930999999999942, 0.9913799999999968, 0.24491999999999337], [0.0, -0.7597199999999953, -1.0732799999999907, -1.3115699999999917, -1.0046399999999975, -0.7889699999999928, -0.7105799999999975, -0.4036499999999972, -0.1622399999999926, -0.04055999999999571, 0.02574000000000165, 0.0932100000000009, -0.5264999999999942, -1.2823199999999977, -1.2195299999999971, -2.1910200000000017, -1.0795199999999925, -0.6224400000000028, -0.24920999999999527, 0.9211799999999997, 0.6224400000000028, 1.7663100000000003, 1.9956300000000016, 1.603290000000002, 0.7277400000000025, 0.1887600000000038, -0.05186999999999031, -0.6411599999999895, -0.6200999999999972, 0.2772900000000016, 0.2815800000000026, 0.7959900000000051, 0.778050000000003, -0.5140199999999933, 0.21606000000000058, -0.2398499999999899, -0.16574999999998852, 0.5573100000000055, 0.6665100000000033, 1.2596999999999978, 0.927810000000008, 0.8427900000000035, 0.06435000000000013, -0.6247799999999932, -0.6563699999999981, -0.5600399999999937, 0.3311100000000078, 0.08346000000000409, -0.49841999999999764, -1.0315499999999957, -0.5186999999999982, -0.5647199999999994, -0.6107399999999936, -1.1025299999999945, -1.2167999999999939, -1.322489999999993, -1.1891099999999897, -0.8271900000000008, -0.5538000000000025, -0.5241599999999975, -0.9356099999999961, 0.1279200000000067, 0.29133000000000386, 0.6626100000000035, 0.7179899999999977, 0.8521500000000017, 1.864200000000003, 1.519439999999999, 1.7101500000000054, 1.1879400000000038, 1.2663300000000008, 0.7644000000000037, 0.5019300000000015, 0.702390000000003, -0.033149999999998236, 0.12948000000000714, 0.14624999999999844, 0.015210000000005053, -0.002729999999989019, -0.17081999999999464, -0.29483999999999444, -0.05147999999999353], [0.0, -0.9001199999999989, -0.4668300000000034, -0.9180600000000001, -0.7125300000000019, 0.08619000000000032, -0.026129999999999876, -0.3888300000000007, -0.5565299999999989, 0.030420000000000114, -0.528450000000001, -1.3217100000000006, -0.6154200000000014, -1.1559600000000008, -2.3926500000000006, -1.4617200000000021, -1.122030000000001, -2.0346300000000017, -1.1856000000000004, -0.14352000000000054, 0.5350799999999993, -0.07956000000000019, 0.44343000000000005, -0.12909000000000015, -0.5495100000000002, -0.5292300000000012, -0.5974800000000002, -1.0370100000000004, -0.11505000000000054, -0.27690000000000037, -0.014430000000000054, 0.1454700000000001, 0.3471, 0.0019499999999994522, -0.3775199999999994, -0.6938100000000011, -0.48282, -0.48828000000000094, -0.13923000000000096, -0.16692000000000118, -0.046800000000000064, -0.3689400000000007, -0.3568500000000001, -0.4449900000000011, -0.8817900000000014, -1.3657800000000002, -0.17004000000000186, 0.08618999999999921, 0.2885999999999997, -0.609959999999999, -0.15015000000000078, -0.69615, -0.6746999999999987, -0.3287700000000007, -0.7741500000000014, -1.0299900000000024, -0.5877299999999994, -0.37166999999999994, 0.04992000000000052, -0.19929000000000008, -0.44577000000000044, -0.9867000000000004, -0.052259999999999196, 0.3502199999999993, 0.6208800000000003, 1.13061, 0.2749500000000005, 0.95394, -0.029640000000000888, -0.07254000000000049, -0.5772000000000008, -0.5791500000000027, 0.10139999999999971, -0.10062000000000049, -0.5775900000000007, 0.04679999999999995, 0.39623999999999954, -0.04875000000000129, -0.2901600000000011, -0.4375800000000012, -0.8186099999999996, -0.26520000000000044], [0.0, -0.15053999999999912, 0.12128999999999993, -0.04055999999999965, -0.7807800000000003, -0.6275100000000005, -0.8825700000000003, 0.27222000000000035, 0.07917000000000006, 0.15990000000000015, 0.38532000000000055, 0.43328999999999995, 0.5522400000000005, -0.14780999999999989, -1.1891100000000001, -1.2924600000000008, -0.38804999999999956, -0.7456799999999993, -0.4660500000000002, 0.2125500000000006, -0.009359999999999785, 0.32955000000000034, 0.3802500000000002, 0.11816999999999983, 0.39117000000000035, 0.3092700000000004, 1.282320000000001, 1.6844100000000002, 1.5362099999999999, 1.9226999999999992, 1.881359999999999, 1.4589899999999998, 1.0151700000000001, 1.746809999999998, 1.2011999999999987, 0.5631600000000001, 0.18993000000000038, 1.1329499999999997, 1.1520600000000005, 0.9586200000000001, 1.3314600000000016, 1.2121199999999988, 1.7936100000000015, 1.6442399999999997, 0.382590000000001, -0.042899999999999744, 0.2577900000000005, -0.25739999999999935, -0.22229999999999883, -0.7702499999999995, -0.7043399999999992, -1.0526099999999992, -0.6516899999999995, -0.7659599999999995, -0.5401499999999994, 0.29328000000000026, 0.15951000000000057, -0.6797700000000003, -0.35879999999999956, 0.07955999999999994, 0.8303099999999999, 0.7983300000000003, 1.30728, 2.0572499999999976, 2.0416499999999997, 2.697630000000001, 2.353650000000001, 1.9776900000000002, 1.8817500000000003, 1.4921400000000018, 0.19851, 0.4925700000000004, 1.044420000000001, 0.7874099999999996, 1.0689900000000006, 1.6278600000000014, 0.8330399999999987, -0.2733899999999991, -0.6633899999999999, -0.7339800000000002, 0.6321900000000005, 0.7764900000000002], [0.0, -0.49568999999999996, 0.18602999999999964, 0.30692999999999937, 0.019500000000000184, 0.18563999999999992, 0.42041999999999946, -0.3584100000000001, -0.5108999999999998, -0.44147999999999965, -0.5237699999999994, -0.3221400000000001, -0.28548000000000007, -0.40052999999999883, -1.265940000000001, -0.6895199999999977, 0.18525000000000016, -0.6594899999999997, -0.19968000000000008, 0.57642, -0.04992000000000052, 0.15248999999999965, -0.29250000000000065, 0.20201999999999962, -0.9211800000000006, -0.9750000000000008, -0.7285200000000003, -1.0081499999999997, -0.7916999999999996, 0.16613999999999973, 0.3279899999999996, 0.6138599999999999, -0.1774500000000001, 0.07331999999999961, 0.2340000000000002, -0.2609100000000011, -0.6107400000000015, 0.6782100000000002, 0.6388199999999995, 0.18212999999999918, -0.0039000000000000146, 0.06356999999999907, 0.41339999999999993, 0.21995999999999952, 0.028079999999999827, -0.14703000000000055, 0.1232400000000006, 0.6380399999999998, 0.16613999999999962, 0.5807100000000001, 0.8271899999999998, 0.4360199999999995, -0.8443499999999995, -0.6056699999999997, -0.2710500000000001, -0.2546699999999994, -1.166489999999999, -1.26516, 0.23633999999999983, -0.6165899999999997, -0.84162, -0.6922500000000005, 0.3455400000000003, 0.17822999999999953, 0.52182, 1.20276, 1.08927, 0.5892899999999999, 0.08735999999999994, -0.2152800000000007, -0.18953999999999782, -0.9625199999999998, 0.15638999999999953, -0.3517800000000002, -0.3962400000000005, -0.018720000000000236, 0.32174999999999976, -0.8033999999999997, -0.9944999999999997, -0.9960600000000002, -0.35840999999999945, 0.5885100000000003], [0.0, -0.21215999999999924, -0.2577900000000001, -0.20669999999999977, -0.35061, -0.6407699999999991, -0.29951999999999956, -0.47268000000000066, 0.3580200000000003, -0.026910000000000767, -0.8712599999999996, -0.8728199999999996, -0.48360000000000036, -1.2105599999999987, -1.1969100000000004, 0.09203999999999907, -0.2991299999999999, -0.5171399999999999, -0.2878199999999993, 0.23945999999999987, 0.33812999999999965, 0.8759400000000006, 0.49881000000000025, 0.39780000000000043, 0.6431100000000001, 0.6021600000000003, 0.4683900000000003, 0.5939699999999997, 0.3654300000000002, 0.7308600000000004, 1.206269999999999, 0.3942900000000001, 0.8790600000000004, 1.1458200000000014, 0.7039500000000002, 0.5963099999999999, 0.7460700000000002, 1.1906700000000003, 0.92352, 1.2597, 0.8724300000000003, 0.62205, 0.8607300000000002, 1.531919999999999, 0.8439599999999996, 0.7413900000000002, 0.9289800000000001, 0.8174400000000002, 0.7562100000000006, 1.09707, 0.4013100000000004, 0.9059700000000005, 0.8638500000000007, 1.0225799999999996, 0.59982, -0.19071000000000127, -0.17745000000000088, -0.5202599999999991, -0.13844999999999952, 0.22776000000000027, 0.24335999999999988, 1.1930100000000001, 1.33458, 1.2558000000000005, 1.8400199999999995, 2.2557600000000013, 2.352090000000002, 2.481179999999998, 1.5923700000000003, 0.8482500000000006, 0.7012200000000004, 0.2663700000000004, 0.20514000000000024, 0.8264100000000001, 0.31394999999999995, 1.1770199999999997, 1.1216399999999993, 1.1083800000000004, 0.34164000000000044, 0.4247099999999996, 1.0682100000000005, 0.6396000000000003], [0.0, 0.6863999999999968, 1.2768599999999921, 0.7183799999999931, 1.1426999999999952, 1.2359099999999947, 0.22073999999999483, 0.15677999999999592, 0.3381299999999956, -0.02223000000000397, 0.6848399999999981, -0.026910000000002654, -0.19227000000000505, -0.07722000000000762, 0.2098199999999948, 0.7101899999999959, 0.6415499999999956, 0.9558899999999988, 1.3029899999999954, 1.2362999999999968, 1.446119999999997, 1.782299999999998, 1.730039999999999, 1.1777999999999982, 1.3100099999999975, 1.229279999999998, 1.494869999999997, 0.8455199999999952, 1.3622699999999965, 1.0728899999999983, 0.943409999999997, 1.1727299999999943, 1.8287099999999996, 1.180139999999997, 1.5549299999999975, 1.7179499999999952, 1.7826899999999979, 1.8692699999999949, 1.5108599999999965, 1.625519999999994, 1.9187999999999952, 0.9075299999999933, 1.3556399999999975, 2.2183199999999967, 1.5615599999999956, 1.594319999999997, 1.5568799999999983, 0.9960599999999951, 1.1325599999999998, 1.159079999999995, 1.3217099999999924, 1.1438700000000002, 1.3209299999999975, 1.088099999999999, 1.572479999999997, -0.07098000000000582, 0.03977999999999593, 0.10373999999999928, 0.6025499999999973, 0.6126899999999984, 0.5752499999999965, 1.6025099999999957, 1.2963599999999977, 1.7869799999999993, 2.253419999999996, 2.5283699999999967, 2.924609999999995, 2.4043499999999964, 2.1293999999999977, 2.1383699999999983, 0.8345999999999942, 0.8626799999999939, 0.5428799999999931, 0.7663500000000001, 1.0970699999999987, 1.7210699999999974, 1.0545599999999946, 0.19148999999999416, 0.007019999999994475, 0.9484799999999955, 1.3127399999999958, 2.0829899999999966], [0.0, 0.6458400000000013, 0.5842200000000035, 0.43329000000000484, 0.6477900000000048, 0.09087000000000378, 0.029250000000004217, 0.9239100000000031, 1.5693600000000045, 1.3536900000000043, -0.04562999999999695, 0.6867900000000036, 0.7679100000000048, 0.10842000000000551, -0.1571699999999967, 0.5662800000000043, 0.09828000000000081, 0.5990400000000049, 0.8069100000000042, 0.8252400000000033, 1.5354300000000034, 1.570920000000004, 1.7097600000000042, 1.5178800000000034, 1.7877600000000042, 1.260480000000004, 0.5768100000000038, 0.944580000000004, 1.269840000000004, 0.8400600000000042, 1.5132000000000034, 0.4687800000000033, 0.5682300000000038, 0.8798400000000042, 1.2242100000000038, 1.0998000000000048, 1.1239800000000033, 1.662180000000004, 1.9706700000000024, 1.957410000000003, 1.2425400000000046, 0.09477000000000313, 1.0935600000000045, 1.703910000000004, 1.3942500000000042, 1.406730000000004, 1.3345800000000034, 0.6981000000000033, 1.148550000000004, 1.2565800000000047, 1.4804400000000033, 1.924260000000003, 1.1715600000000024, 1.0658700000000034, 0.9968400000000042, 0.8802300000000025, 1.231620000000004, 0.7616700000000045, -0.09983999999999638, 0.4106700000000054, 0.9960600000000033, 1.3525200000000035, 2.3263500000000037, 3.0264000000000038, 2.5318800000000037, 2.2440600000000037, 2.335320000000004, 2.774850000000004, 2.2120800000000047, 1.8856500000000045, 1.075620000000004, 0.4676100000000045, 0.39117000000000424, 0.6711900000000031, 0.854100000000003, 1.5307500000000025, 1.5108600000000045, 1.2136800000000039, 0.19812000000000385, 0.6825000000000054, 1.2948000000000033, 0.6470100000000039], [0.0, 0.19343999999999995, 0.27143999999999946, -0.6864000000000003, -0.6676800000000007, -0.18291000000000054, -0.058110000000000606, -0.4617600000000004, -1.0069800000000018, -1.6805100000000017, -1.1411400000000007, -1.1785799999999997, -0.6126900000000006, -1.2620400000000005, -1.0440299999999998, -0.5623800000000003, -1.2795900000000016, -1.1649300000000022, -0.6407700000000006, -0.3108300000000005, -0.1365000000000003, -0.7413900000000005, -0.5608200000000005, -0.8833500000000002, -0.8373300000000008, -0.6840600000000003, -0.9426300000000006, -0.7690800000000009, -1.1376300000000001, -0.48867000000000027, -1.2370799999999997, -0.7569900000000005, -0.6778200000000003, -1.2285000000000008, -0.09087000000000131, 0.36815999999999827, 1.0459800000000001, 0.8981699999999998, 0.6185400000000001, 0.3829799999999999, 0.027689999999999382, -0.21606000000000022, 1.006199999999998, 1.107209999999999, -0.1431300000000003, -0.3771300000000011, 0.07604999999999973, -0.17004000000000044, 0.3814199999999992, 0.6520799999999995, 1.3891799999999992, 0.913769999999999, -0.3162899999999997, -0.3708900000000003, -0.8919300000000011, -1.7308199999999991, -1.2916799999999995, -1.1200799999999997, -1.0190700000000001, -1.0881000000000003, -0.026520000000001154, 0.05927999999999972, 0.07487999999999945, 0.012479999999998992, 0.29717999999999944, 0.7768799999999992, 0.41027999999999953, 0.8045699999999999, 0.7776599999999997, -0.04445999999999964, -0.14235000000000017, -0.203190000000001, -0.0315900000000007, -0.8607300000000022, -0.56121, -0.5705700000000004, -0.69693, -1.03701, -1.409850000000001, -0.8201700000000001, -0.8950500000000003, -0.0054600000000006865], [0.0, 0.030030000000003998, -0.5069999999999975, -0.8069099999999962, -0.2644199999999959, -0.42158999999999747, -0.7597199999999966, -0.330719999999999, -0.5514599999999987, -0.7632299999999992, -0.638819999999999, -0.863459999999999, -0.7897499999999953, -1.3965899999999971, -0.7433399999999986, 0.27573000000000203, -0.5584799999999936, -0.6212699999999933, -0.04172999999999405, 0.9675900000000028, 0.8307000000000015, 0.6559800000000022, 0.10920000000000218, -0.7160399999999987, -0.7293000000000012, -0.6083999999999965, -0.6072299999999968, -1.6071899999999988, -0.8408399999999983, 0.33033000000000423, 0.6321900000000042, -0.5093399999999968, -0.018719999999997405, -0.5054399999999979, -0.8806199999999951, 0.012480000000002711, 0.33384000000000347, 0.5097300000000005, 0.3693300000000037, 0.3042, -0.3467099999999972, -1.1173499999999952, -0.48476999999999837, 0.5733000000000041, 0.0237900000000022, 0.15600000000000325, 0.24921000000000193, 0.10101000000000271, 1.4710800000000024, 1.3217100000000022, 1.3622700000000028, 1.4129700000000016, -0.13923000000000219, -0.5167499999999996, -0.6934199999999988, -1.1894999999999976, -1.129049999999995, -1.0471499999999994, -1.276859999999996, -0.683279999999999, -0.2363399999999949, 0.09984000000000348, 0.5089500000000033, 0.5268900000000027, 1.5011100000000028, 1.5603900000000026, 1.723800000000003, 1.049490000000002, 1.183650000000003, 0.4984200000000021, -0.2827499999999983, -0.764009999999999, -0.6505199999999962, -0.7456799999999961, -1.519050000000001, -0.11855999999999733, -0.0990599999999966, -0.8381100000000004, -1.6060199999999965, -0.9020699999999979, -0.09047999999999368, 0.13650000000000473], [0.0, 0.3447600000000006, -0.08891999999999944, -0.4048199999999995, -0.5814899999999992, -1.0237499999999984, -1.0046399999999984, -1.0030800000000002, -1.4831699999999999, -2.059199999999997, -1.5178800000000003, -1.6239600000000016, -2.40045, -2.67267, -2.485079999999998, -2.324399999999998, -2.334929999999999, -2.4199499999999947, -1.101750000000001, -0.7573800000000022, -1.2425399999999973, -1.3142999999999976, -1.8049199999999943, -1.5549299999999993, -1.4164799999999973, -1.701570000000003, -2.1196499999999983, -2.379389999999999, -1.74369, -1.3946400000000003, -1.6438499999999974, -2.524079999999997, -3.1656299999999975, -2.152800000000001, -1.829490000000003, -0.9652499999999988, 0.3326699999999996, -0.2117699999999969, -0.7460700000000018, -0.21215999999999946, -0.7331999999999974, -1.329899999999999, -1.2339599999999997, -1.6773899999999982, -0.5417099999999979, -1.3556400000000015, -0.32408999999999955, -0.16340999999999806, -0.4024799999999984, 0.06084000000000067, -0.16302000000000127, -0.04407000000000272, -0.8997299999999964, -0.3342299999999958, -1.1243699999999968, -2.990129999999999, -2.4667499999999976, -2.4215099999999996, -2.338440000000001, -1.8446999999999991, -0.685229999999998, -0.12869999999999848, -0.505439999999997, -0.8619000000000021, -0.1509299999999989, -0.08658000000000188, 0.38922000000000123, 0.10451999999999884, -0.01637999999999895, -0.31082999999999883, -0.31004999999999905, -0.18017999999999912, -0.7156500000000041, -0.48710999999999904, -0.8084699999999971, -0.7480199999999968, -1.0163399999999956, -1.5514200000000007, -1.8493800000000031, -1.0342800000000008, -1.5494699999999977, -1.2152399999999992], [0.0, -0.042119999999998825, -0.21645000000000358, -1.2499500000000054, -0.7456799999999957, -0.9831900000000022, -1.7390100000000004, -1.369290000000003, -1.9671600000000025, -1.7624099999999991, -0.3755700000000015, -1.16493, -1.6313699999999924, -2.0237099999999995, -0.9102600000000001, -0.7823399999999943, -1.20003, -1.3435500000000005, -0.45044999999999735, -0.38687999999999345, -0.6532500000000008, -0.6271200000000023, -1.175849999999996, -1.0100999999999987, -1.4234999999999953, -1.8981299999999983, -1.6758299999999977, -1.8255900000000054, -1.2717899999999975, -0.9855299999999945, -1.0007399999999862, -0.9999599999999971, -1.304549999999999, -1.2752999999999997, -1.1302200000000013, -0.6072300000000022, 0.005459999999998466, 0.09711000000000336, 0.8821799999999995, 0.6739199999999936, -0.26285999999999987, -0.5814899999999987, -0.6918599999999966, -0.8548800000000023, -0.9746100000000029, -1.0038600000000049, -0.7538700000000009, 0.7097999999999987, 0.781559999999998, 0.8782800000000006, 1.6477500000000016, 1.6348799999999981, 0.6922500000000067, 0.6138600000000007, -0.4851599999999987, -1.4410500000000033, -2.5907699999999974, -2.2986599999999946, -2.1863399999999977, -1.9659899999999961, -1.1770199999999926, -1.001129999999998, -0.5280600000000071, -0.40949999999999775, 0.5288399999999989, 0.2636400000000032, 0.542489999999999, 0.840450000000001, 1.0354499999999986, -0.33383999999999325, -0.07760999999999463, -0.9133799999999974, -1.3969799999999992, -1.349009999999998, -1.1118900000000016, 0.14313000000000198, 0.10841999999999974, -0.60372, -1.4843400000000022, -0.4988099999999971, -0.9816299999999973, -1.0397400000000054], [0.0, 0.044849999999998724, 0.5011499999999989, 0.09827999999999859, 0.0787799999999994, 0.19382999999999995, -0.852540000000001, -0.7246200000000023, -0.33071999999999857, -0.6520800000000004, -0.7090200000000018, -0.47034000000000287, -0.10920000000000107, -1.5377700000000016, -1.5225599999999992, -1.314300000000005, -1.7873700000000017, -1.8252000000000008, -1.054559999999998, -1.1321699999999983, -0.8782800000000017, -0.41184, -0.3451500000000016, -1.0155599999999996, -0.4824299999999997, -0.7651800000000002, -0.4964699999999993, -0.8275800000000004, -0.7784400000000009, -1.23084, -1.2647700000000024, -0.3989700000000014, -0.5062200000000017, -0.7347600000000007, -0.07682999999999973, 0.11661000000000055, 0.6150299999999996, 0.7948199999999994, 0.19148999999999927, 0.7569899999999993, 0.4929599999999985, -0.4738500000000012, -0.5401500000000026, 0.0690299999999997, 0.7835099999999992, 0.021839999999999637, 0.6333599999999988, 0.7710299999999985, 0.8053499999999992, 1.632149999999999, 1.162199999999999, 0.8310899999999989, 0.059669999999998335, -0.22853999999999886, -0.49841999999999986, -1.462110000000002, -1.6231800000000038, -1.7901000000000018, -1.0182900000000001, -1.319760000000002, -1.3591500000000025, 0.005069999999999686, 0.3701099999999995, 1.038569999999999, 0.8798399999999991, 0.8759400000000002, 0.20981999999999945, -0.36816000000000004, -0.20474999999999977, -0.2297100000000023, 0.19187999999999783, 0.8275800000000001, 0.42899999999999894, 0.10646999999999829, -0.8486400000000012, -0.012090000000000156, -0.6680699999999986, -0.38220000000000187, -0.4461600000000012, -0.5077799999999983, -0.5034900000000007, -1.046759999999997], [0.0, 0.3088800000000002, -0.08073000000000002, -0.1599000000000007, -0.2433599999999998, -0.31044000000000027, -1.3505700000000003, -1.8415799999999982, -1.659840000000003, -1.2655500000000002, -0.45473999999999903, -0.5959200000000001, -0.7136999999999992, -1.5970499999999999, -1.5171000000000014, -1.1738999999999993, -1.7409600000000016, -1.3256099999999997, -1.2218700000000005, -0.845519999999999, -0.6793800000000002, -0.52962, -0.20747999999999978, -0.3482700000000012, -0.5826599999999991, -0.5986500000000006, -1.8899400000000006, -2.2814999999999994, -2.105609999999999, -1.4180399999999995, -1.1325599999999993, -1.3915200000000003, -1.3076700000000003, -0.9235199999999996, -0.9605699999999991, 0.12285000000000063, 0.16418999999999956, 0.5701800000000008, 0.81081, 1.09824, 0.23322000000000007, -0.7390500000000001, -0.8431800000000004, -0.7643999999999994, -0.3435899999999996, -0.43523999999999996, -0.3591899999999999, -0.14196000000000053, 0.6388200000000005, 1.4328600000000002, 1.5116400000000008, 0.9859200000000002, 0.11817000000000144, -0.4407000000000001, -0.9664200000000013, -1.3997099999999985, -1.2561899999999993, -1.36071, -1.9753500000000033, -1.96794, -1.0026900000000003, -0.3857099999999999, -0.7261800000000006, 0.66729, 0.6715800000000003, 0.6200999999999999, 0.7086300000000008, -0.6930300000000019, 0.32564999999999866, -0.09477000000000035, -0.2277600000000003, -0.17276999999999976, -0.5631599999999997, -0.37049999999999916, -0.24999000000000038, 0.5787600000000004, 0.46566000000000035, -0.5916299999999995, -0.9352200000000009, -0.18798000000000004, 0.3357899999999998, -0.25700999999999785], [0.0, -0.7842900000000022, 0.26363999999999876, 0.5588699999999971, 0.991769999999998, 0.5175299999999994, -0.3073200000000016, -0.5873400000000037, -0.3954600000000017, -0.6142500000000037, -1.1891100000000017, -2.0826000000000024, -1.2628200000000005, -1.92465, -1.9266000000000025, -1.5116400000000028, -2.147730000000002, -1.7889300000000026, -1.7023500000000027, -2.224950000000004, -2.034240000000003, -0.5666700000000011, -1.4106300000000027, -0.8330399999999991, -1.4937000000000025, -1.1668800000000026, -1.3767000000000018, -1.0455900000000007, -0.26208000000000364, -0.8447400000000065, -0.12129000000000412, -0.9691499999999973, -1.6138200000000031, -2.2354800000000044, -1.5518100000000015, -0.8911500000000028, 0.3151199999999994, 1.3072799999999978, 0.7374900000000011, 0.7226699999999981, 0.35957999999999934, -0.8084700000000011, -1.4172600000000015, -0.9180600000000045, 0.11544000000000221, 0.4625400000000015, 1.0783499999999995, 1.4819999999999949, 1.2596999999999987, 1.3926899999999973, 1.5962699999999952, 0.5955299999999975, 0.43094999999999883, 0.10724999999999829, 0.7901400000000001, -0.7390500000000015, -1.2281100000000031, -2.13018, -1.8045300000000035, -0.6598799999999989, -1.5650700000000015, -1.3704600000000013, -0.8018400000000034, -0.8568300000000031, -0.29016000000000197, 0.007409999999996586, -0.8958300000000046, -0.7172100000000015, 0.35879999999999423, 0.1817399999999978, 0.3779099999999991, 0.5709599999999995, 0.7324199999999985, 0.648569999999995, 0.3006900000000017, -0.2297100000000003, 0.3654299999999968, 0.3533399999999971, -0.383370000000002, -0.722670000000003, -0.7078500000000019, -1.1220300000000036], [0.0, 0.1361099999999995, 0.5471700000000004, 0.8334300000000001, 0.8576099999999995, 0.5740799999999999, -0.14040000000000052, -0.7725900000000014, -1.079520000000001, -1.6894800000000014, -1.2944100000000005, -0.16925999999999997, -0.8708700000000018, -1.0799099999999981, -1.3642200000000022, -0.6013799999999971, -0.7008299999999998, 0.03120000000000367, -0.10413000000000228, 0.7000500000000003, 1.4445600000000007, 0.6360900000000005, -0.15053999999999723, -0.7523100000000027, -1.1696099999999974, -2.1851699999999967, -1.5385499999999999, -1.545180000000002, -1.665299999999995, -1.29441, -0.9890399999999988, -0.9317099999999998, -1.483170000000002, -1.7113200000000006, -0.9488699999999977, -0.18290999999999968, 0.4878899999999997, 0.7757099999999986, 1.3396499999999991, 1.6021200000000027, 1.3291199999999976, -0.2975699999999972, -1.1282699999999979, -1.2113399999999999, -0.12012000000000089, 0.6407699999999994, 0.5335199999999993, 0.3236999999999992, 0.5069999999999992, 1.4129699999999998, 1.7635799999999988, 1.7304300000000006, 1.1524500000000002, 1.3201500000000008, 0.4547399999999988, -0.9749999999999992, -1.6832400000000005, -1.6637399999999998, -1.2807599999999972, -1.6613999999999987, -1.3536900000000007, -0.7292999999999972, 0.43796999999999864, 0.12285000000000235, 1.4476800000000003, 1.7035199999999997, 1.3260000000000014, 0.7690800000000027, 0.36192000000000135, -0.16886999999999697, -0.6821100000000002, -0.48906000000000294, -0.27690000000000126, 0.23478000000000154, 0.21996000000000082, 0.7144799999999998, 1.1029200000000008, 0.025739999999999874, -0.8381100000000012, -0.206700000000001, -0.5814900000000001, -0.0015599999999982295], [0.0, -0.09204000000000123, 0.5436599999999978, 1.2386399999999997, 0.9024599999999983, 0.3159000000000003, 0.11972999999999878, 1.1278799999999978, 0.9071399999999987, 0.9905999999999975, 1.1263199999999984, 0.9020699999999977, 0.3783000000000001, -0.7702500000000025, -1.033110000000001, 0.35918999999999834, -0.9219599999999977, -1.2378599999999995, -1.5143700000000004, -1.5401099999999994, -1.2979200000000004, -0.840059999999998, -0.3642600000000007, -0.015600000000000946, 0.26246999999999954, 0.6555899999999977, 1.5420599999999984, 1.2733499999999989, 0.7647899999999987, 0.3006899999999988, 0.35567999999999933, 0.12830999999999815, -0.014040000000000497, -0.47034000000000376, -1.2753000000000028, 0.21293999999999924, 0.8505899999999988, 1.0210199999999974, 0.9051899999999975, 0.3268199999999992, -0.01833000000000018, -0.3260399999999999, -0.12402000000000113, 1.0510499999999998, 1.6590599999999986, 2.010059999999999, 2.4924899999999983, 2.5888199999999983, 2.657849999999999, 2.376269999999998, 2.433209999999999, 2.230799999999999, 0.895829999999999, -0.013259999999999827, 0.7702499999999974, 0.5514599999999974, 0.16028999999999805, 0.4520099999999987, 0.25895999999999875, -0.0366600000000008, 0.22424999999999629, 0.7425599999999981, 0.9001199999999976, 1.3973699999999991, 1.1060400000000004, 0.801839999999999, 0.6427199999999982, 0.3096599999999985, 1.1313899999999986, 0.8205599999999993, 1.1142299999999972, 1.6364399999999997, 2.1539699999999975, 2.0338499999999984, 2.0591999999999984, 1.8556199999999985, 2.511989999999999, 1.7175599999999982, 2.238989999999999, 1.828319999999999, 1.8536699999999986, 1.0896599999999992], [0.0, -0.0035100000000012344, 0.7948200000000005, 1.90905, 1.1680499999999998, 0.3334500000000027, 0.21878999999999538, 0.21098999999999712, 0.1400099999999984, -0.060059999999996894, -0.11427000000000209, 0.2312699999999963, 0.031199999999999672, -0.1283100000000017, 1.0713300000000001, 0.9215699999999991, 0.1907099999999966, 0.1474199999999959, 0.5023199999999992, 0.2757299999999989, 0.4102800000000011, 0.08463000000000154, 1.0338900000000004, 0.9391199999999995, 0.9980100000000007, 0.38882999999999823, 0.5089500000000031, 1.1391900000000001, 1.2199199999999981, 0.0744899999999995, 0.5027100000000018, 0.45903000000000027, 0.2956199999999978, 0.5850000000000009, 0.2999099999999988, -0.007410000000001027, -0.1544400000000028, -0.29913000000000123, -0.8096400000000004, -0.2675400000000008, -0.8174399999999995, -0.9094800000000034, 0.293279999999998, 0.3131699999999973, -0.5374200000000009, -0.34046999999999894, 0.8599499999999991, 1.0085400000000027, 0.7994999999999988, 0.6680699999999957, 1.0128299999999983, 1.4121899999999983, 1.4929199999999974, 1.6290299999999993, 1.9344000000000006, 2.1633300000000006, 1.7487599999999972, 1.4301299999999981, 1.4184299999999979, 1.9507799999999984, 2.164889999999999, 3.403139999999999, 3.0135299999999985, 2.5856999999999983, 2.5845299999999995, 2.531099999999999, 2.4386699999999992, 3.000659999999999, 1.810380000000002, 2.0404799999999996, 2.7635399999999994, 1.4878499999999997, 2.714009999999999, 1.9476599999999984, 1.3396499999999985, 1.8142800000000008, 1.5580500000000006, 1.6625699999999988, 0.9984000000000011, 0.4715100000000003, 0.7226700000000004, 0.4917899999999995], [0.0, 1.061189999999999, 1.5276300000000007, 1.3416000000000006, 1.2624300000000002, 1.227719999999998, 0.6813300000000017, 0.4266599999999986, 0.46682999999999863, 0.015210000000000057, 1.50618, 0.7815599999999993, 0.005850000000001021, -0.15638999999999992, 0.5998199999999992, 0.59943, -0.016380000000000505, 0.06629999999999958, -0.5311800000000004, -0.19461000000000017, 0.25350000000000006, 0.03002999999999989, 0.5073900000000001, 1.7511000000000037, 1.3607099999999992, 0.42119999999999924, 1.166879999999999, 1.1259299999999977, 1.5966599999999982, 0.7417800000000002, -0.042119999999997826, 0.06825000000000048, -0.11895000000000067, -0.9254700000000005, -0.6809400000000005, 0.54015, 1.145430000000001, 0.4126200000000001, 0.48438000000000125, 0.7932600000000004, 0.46995, 0.11465999999999954, -0.3147299999999994, -0.16926000000000108, 0.9761699999999988, 1.9667699999999972, 2.476109999999997, 2.5736099999999986, 2.5630799999999994, 1.8470400000000016, 1.6809000000000007, 1.6684200000000016, 1.0132200000000005, 1.3088400000000013, 1.1333400000000018, 1.0764000000000014, 0.9492600000000005, -0.16379999999999995, -0.54288, 0.020280000000000076, -0.16457999999999928, 0.6091799999999999, 0.8357700000000009, 1.2522900000000008, 1.1114999999999995, 0.6871800000000005, 0.6992699999999991, 0.970709999999999, 1.36383, 0.7998900000000014, 1.0397399999999992, 0.9090899999999994, 1.32327, 1.145820000000001, 1.6594500000000019, 1.0490999999999993, 1.4340300000000017, 3.0864600000000055, 2.1504599999999985, 1.5428399999999995, 1.8154500000000011, 1.5826200000000004], [0.0, -0.06512999999999924, 0.36231000000000035, 0.21645000000000136, -0.012869999999999493, 0.40950000000000086, -0.3685500000000004, -1.3646099999999985, -1.38645, -0.9925500000000005, -0.2102099999999989, -0.046019999999998173, 0.10139999999999971, 0.08306999999999998, -0.5510700000000004, 0.2714399999999988, -0.23634000000000044, 0.12753000000000214, 1.0744500000000003, 0.9137700000000009, 0.6497400000000003, 0.4925700000000013, 0.7433400000000006, -0.0038999999999986823, 0.3135600000000007, 0.2203500000000007, 0.45162000000000035, -0.0233999999999992, -0.30341999999999847, -0.8470799999999983, -0.9496499999999988, -0.7675199999999998, -0.8353799999999985, -0.6450599999999995, -0.6544199999999987, 0.16380000000000106, 0.7647900000000009, 1.148940000000001, 0.9703200000000014, 0.8790600000000012, 0.6587100000000011, -0.2024100000000002, -0.5986500000000006, -0.34865999999999997, 0.2807999999999993, 1.1988600000000005, 1.7553900000000007, 1.5666300000000004, 2.1960900000000017, 2.749500000000001, 2.64771, 1.4784900000000005, 1.1898900000000006, 0.41457000000000077, 0.5034900000000018, 0.668460000000001, -0.1953899999999973, 0.3120000000000023, -0.11193000000000053, -0.21137999999999746, -0.40325999999999884, -0.9281999999999999, -0.01988999999999952, 0.46059000000000105, 0.7078500000000005, 0.6649500000000007, 0.5795400000000014, 0.44772000000000134, 1.397760000000001, 1.1005800000000003, 0.5276700000000006, 0.24180000000000113, 0.5935799999999993, 0.18837000000000215, 0.1517100000000009, 0.6318000000000009, 1.3583700000000007, 2.17659, 1.3903500000000009, 0.6922500000000007, 1.2339600000000008, 1.4067300000000005], [0.0, 0.041339999999999266, 1.20237, 0.3626999999999985, -0.31785, 0.29093999999999914, 0.4898400000000002, 0.8837399999999995, 1.4792700000000012, 1.4866799999999991, 1.272570000000001, 1.0046399999999993, 0.6626100000000004, 1.2300599999999995, 0.3853200000000004, 0.7768799999999996, -0.1942199999999995, -0.25818000000000035, -0.8264100000000005, 0.22074000000000032, 0.40170000000000033, 0.24180000000000007, 0.7394399999999979, 0.4488899999999994, 1.016340000000001, 0.7039499999999994, 1.1898899999999994, 0.9274200000000001, 0.8755500000000007, 0.12440999999999974, 0.7090199999999989, 0.4020899999999999, 0.2312699999999998, 0.12246000000000151, 0.95706, 0.7963800000000003, 1.4968199999999985, 0.8049600000000003, 0.17003999999999964, 1.1590799999999986, 1.3197599999999994, 1.55298, 0.37907999999999925, 0.6372599999999977, 2.0724599999999995, 1.3275599999999994, 1.7066400000000022, 1.7752799999999989, 1.8119399999999992, 2.129789999999999, 1.887209999999998, 2.2807199999999983, 1.7659199999999993, 1.6797299999999984, 1.586519999999999, 1.4617199999999988, 1.2117300000000013, 0.9317099999999996, 1.1037000000000001, 1.2023700000000002, 1.3201499999999995, 1.5213899999999998, 1.3689000000000024, 1.3408200000000006, 1.6064100000000001, 1.17273, 0.7760999999999989, 0.9476999999999987, 1.1173499999999994, 1.2764699999999993, 1.0455899999999996, 0.9336600000000008, 1.049879999999999, 0.6980999999999999, 1.16415, 2.457, 2.680470000000002, 2.575560000000002, 2.058029999999999, 2.7518400000000005, 2.2686299999999973, 2.483520000000003], [0.0, 0.04757999999999685, -0.2796300000000018, -0.25232999999999794, -0.07643999999999851, -0.3432000000000004, 0.12089999999999756, -0.7554300000000027, -0.5163599999999993, -0.17784000000000244, -0.3525599999999991, 0.356069999999999, -0.2698799999999979, -0.6084000000000027, -1.3704600000000053, -0.6672900000000017, -0.8700899999999989, -0.6669000000000014, -0.07800000000000473, 0.3404699999999994, -0.24140999999999924, -0.23439000000000165, -0.10022999999999849, 0.18486000000000002, 0.5027099999999978, -0.0019500000000003403, -0.6165900000000044, -0.29328000000000287, -0.33891000000000115, -0.8611199999999992, -1.3302900000000002, -1.2920700000000047, -1.639559999999999, -1.6446300000000043, -1.0214100000000044, -0.27768000000000015, 0.19811999999999896, 0.2129399999999979, 0.00350999999999857, -0.1014000000000026, -0.5288400000000002, -1.4020500000000014, -1.0397399999999997, -0.843179999999998, -0.5924100000000014, 0.37323000000000084, -0.1361100000000004, 0.16730999999999918, 0.20786999999999756, 0.6723600000000012, 0.6290699999999996, 1.290509999999999, 0.7164299999999995, -0.06357000000000212, -0.22659000000000118, 0.0046800000000000175, -0.44187000000000154, -0.41573999999999867, -0.46331999999999907, -0.58344, -0.2628600000000074, -0.5900699999999994, -0.811200000000007, -0.6579300000000061, -0.36933000000000327, 0.05459999999999843, 0.1696499999999963, -0.012480000000002267, -0.03821999999999903, -0.08346000000000009, -0.3880500000000038, -0.5163599999999993, -0.019110000000001293, -0.28353000000000383, 0.5569199999999976, 0.06785999999999648, 0.5101200000000019, 1.3552499999999954, 0.6961499999999994, 0.9515999999999987, 1.3700700000000001, 0.8681399999999995], [0.0, 0.5974799999999989, 0.2094299999999989, 0.4648799999999993, 0.30575999999999937, 0.6263399999999979, 1.1415299999999982, 1.4184299999999985, 0.6115199999999983, 0.8162699999999983, 0.9551099999999985, 0.48554999999999815, -0.5144100000000027, 0.2550599999999985, -0.31629000000000107, 0.1774499999999981, -0.7289100000000033, -0.6454499999999961, -0.41340000000000043, 0.12245999999999935, 1.1005799999999986, 1.4028299999999982, 1.420379999999998, 1.3361399999999986, 1.5915899999999983, 1.1949599999999985, 1.2183599999999983, -0.3151200000000014, 0.06941999999999848, 0.17744999999999878, -0.9359999999999988, -0.6220500000000004, -0.7452900000000022, -0.2995200000000009, -0.013649999999999496, -0.34749000000000474, 0.8225099999999981, 0.9796799999999988, 0.6622199999999978, 0.531179999999998, -0.003900000000001347, -0.2375100000000019, -0.8927100000000026, -0.774930000000001, -0.19461000000000106, 0.5818799999999984, 1.7776199999999986, 2.0646599999999986, 1.8329999999999982, 1.398539999999998, 1.1836499999999979, 1.0814699999999977, 0.5998199999999989, 0.5522399999999996, 0.6076199999999987, 1.1415299999999986, 0.7640099999999996, 1.1177399999999966, 1.0241399999999992, 1.0494899999999974, 1.4219399999999984, 1.5880799999999984, 1.4862899999999983, 0.9285899999999981, 0.6005999999999991, 1.4936999999999983, 1.3388699999999978, 1.2487799999999996, 1.2842699999999985, 1.4621099999999982, 0.5167500000000005, 0.7335899999999984, 0.4652699999999985, 0.6536399999999982, 0.7370999999999976, 1.746029999999998, 1.7159999999999984, 2.3493599999999986, 1.5560999999999985, 1.7234099999999986, 3.059549999999999, 3.0786599999999975], [0.0, 0.0421200000000006, 0.07371000000000238, -0.9352200000000015, -0.9071399999999974, -0.8474699999999982, -0.6984899999999978, -0.17042999999999875, -0.4890599999999976, 0.5183100000000043, 0.45669000000000337, 0.02418000000000342, -0.9406799999999964, -1.100969999999999, -1.478879999999998, -0.49452000000000096, -0.6158099999999989, 0.18291000000000412, 0.8712600000000017, 0.11817000000000277, -0.05849999999999955, -0.0627899999999979, -0.2339999999999991, -0.44108999999999865, -0.31316999999999684, 0.2484300000000026, 0.1669200000000015, 0.6672900000000022, 0.35841000000000367, -0.5658899999999982, -0.7597199999999988, -0.7121399999999993, -1.125539999999996, -1.7471999999999968, -1.897739999999997, -1.1941799999999967, -0.31082999999999794, -0.23282999999999987, 0.415740000000002, -0.4722899999999961, -1.3170300000000026, -0.719549999999999, -0.5093399999999955, -0.5877299999999974, -0.17666999999999922, -0.2008499999999973, 0.1626300000000005, -0.015989999999998172, 0.2336100000000041, 0.922350000000004, 0.8264100000000021, 1.0374000000000019, 0.09438000000000235, -0.7152600000000002, -0.20396999999999954, -0.10295999999999772, -1.3989299999999978, -1.5494699999999972, -0.35645999999999756, -0.3287699999999969, -0.3143399999999992, -0.4851599999999987, -0.2035799999999952, -0.2960099999999972, 0.7300800000000027, 0.5530200000000021, 0.6384300000000025, -0.3275999999999968, -0.5432699999999993, -0.6895199999999986, -1.053780000000001, -1.178969999999997, -0.9933299999999998, -0.0019499999999976758, 0.3069300000000035, 1.2246000000000028, 1.7659200000000028, 2.5275900000000022, 1.2331800000000026, 1.5369900000000025, 1.0241400000000025, 0.8654100000000031], [0.0, 0.42900000000000194, 0.31863000000000075, 0.3736199999999996, 1.178190000000001, 0.6871800000000011, 0.15795000000000137, 0.3958500000000009, 1.0580700000000012, 1.3029900000000012, 0.3420300000000007, 0.3162900000000006, -0.4063800000000011, -0.733200000000001, -1.877460000000002, -1.9581899999999992, -2.3372699999999944, -0.9894300000000005, -0.8232900000000001, -0.07487999999999895, 0.40950000000000064, 0.09983999999999882, 0.8560500000000009, 0.7413900000000007, 1.4664000000000017, 0.8275800000000011, 0.7413900000000008, -1.1957400000000007, -1.1559600000000012, -2.9636099999999983, -2.3372699999999984, -2.2588799999999964, -1.4067299999999991, -0.4757999999999998, -0.8595599999999997, -1.0689899999999986, -1.641509999999999, -1.871219999999997, -1.66413, -0.8884199999999995, -1.5100799999999999, -1.8770699999999985, -1.5210000000000008, -0.9535500000000003, -0.20864999999999956, 0.7644000000000003, 0.8045700000000007, 0.37050000000000094, 0.3662100000000006, -0.12636000000000003, -0.60528, -0.7398299999999987, -1.1551799999999957, -1.4504099999999984, -1.0892700000000022, -0.7004399999999995, -0.18524999999999792, 0.6446700000000017, 0.5265000000000014, 1.1157900000000016, 1.9925100000000007, 1.5229500000000018, 2.38134, 1.0826400000000012, -0.005459999999999132, 0.10529999999999973, 0.13845000000000018, -0.011310000000000375, 0.10335000000000027, -0.30576000000000025, -0.7870199999999952, -1.2253799999999977, -1.3466700000000005, -1.3026000000000009, -0.23087999999999664, 0.7640100000000007, 0.9461400000000009, 1.7967300000000015, 2.278380000000001, 2.429310000000003, 2.1925799999999995, 1.9675500000000006], [0.0, 0.07331999999999184, 0.23633999999999666, -0.11505000000000276, 1.051049999999993, 1.0202399999999958, 1.1933999999999951, 0.8849099999999934, 0.5046599999999994, -0.16809000000000474, 0.20903999999999368, -0.01404000000000849, -0.09828000000000348, -1.5057900000000037, -1.81545000000001, -1.7608499999999996, -1.4067300000000103, 0.1723800000000013, 0.5307899999999934, 1.508129999999996, 1.6508699999999976, 0.6711899999999984, 0.5908499999999934, 1.647749999999995, 1.591589999999993, 0.6602699999999952, -0.8248500000000067, -0.05538000000000842, -1.1349000000000036, -1.7643600000000044, -1.8115500000000058, -1.0526100000000032, -1.7362800000000016, -1.8762900000000018, -0.7897500000000015, -0.6587100000000037, -0.46799999999999997, -0.5658900000000031, -0.6782100000000018, -0.49257000000000684, -0.932490000000004, -1.4870700000000099, -1.1352900000000083, -0.2145000000000037, -0.7718100000000048, 0.18173999999999424, 0.1661399999999924, 0.42081000000000035, 1.1501099999999909, 0.5795399999999997, 1.1555699999999982, 0.610349999999996, -0.06825000000000347, -0.29484000000000954, -0.3377399999999975, 0.8447399999999927, 0.5920199999999882, 0.28509000000000295, 1.2269399999999955, 2.002259999999992, 1.7089799999999982, 0.8498099999999926, -0.026130000000002873, 0.34241999999999084, 0.37868999999999087, 0.5662799999999901, 0.38063999999999876, 0.5873399999999949, 0.179789999999997, 0.04172999999999316, -0.7363199999999983, -1.1220300000000014, -1.925430000000003, -1.6883100000000013, -0.7207200000000054, 0.5502900000000022, 1.11695999999999, 1.997969999999993, 1.4784899999999936, 2.4722099999999982, 2.26901999999999, 2.719859999999993], [0.0, 0.15756000000000048, 0.2234699999999996, 0.7234499999999993, 0.5206500000000014, 0.6801599999999988, 0.16418999999999984, -0.12089999999999934, 0.4516199999999999, 0.7667399999999993, -0.13454999999999956, -0.5705700000000008, -1.1817000000000006, -0.7620599999999997, -1.613430000000001, -2.0572500000000025, -2.05101, -1.2437100000000023, -0.68484, -0.00039000000000044555, 0.07994999999999963, -0.4258799999999999, -0.2718300000000002, -0.5405400000000001, 0.0709799999999996, -0.3767400000000005, -1.0019099999999996, -1.6216200000000003, -1.968720000000001, -1.8985200000000004, -2.0385300000000006, -1.9035900000000003, -1.4063399999999997, -1.65945, -2.5248600000000008, -1.85523, -1.40829, -1.1832600000000002, -2.3150400000000007, -0.7062900000000003, -1.48863, -1.32717, -1.1333400000000002, -0.8728199999999999, 0.23243999999999887, 1.1282699999999992, 1.1263199999999987, 0.480090000000001, -0.08345999999999998, -0.6220499999999997, -0.6470099999999999, -1.1949599999999998, -1.2402000000000006, -1.0986300000000002, -0.8221200000000002, -0.2960100000000002, -0.3279900000000003, -0.15288000000000013, -0.43095000000000105, -0.25584000000000023, -0.08892000000000078, 0.1727700000000001, 0.4902299999999997, 0.6310200000000015, 0.01014000000000026, -0.7448999999999995, -0.5148000000000008, -0.36192000000000013, -0.6232199999999997, -0.6306300000000004, -1.3244400000000003, -1.666080000000001, -1.48785, -0.35295000000000015, 0.21645000000000036, 0.3190199999999992, 0.8946599999999989, 1.2979200000000004, 1.0206300000000008, 0.9761700000000031, 0.6349200000000017, 0.9621300000000008], [0.0, 0.4988100000000024, -0.07293000000000216, -0.1287000000000038, -0.5834399999999986, 0.6220499999999993, 0.9161099999999975, -0.6275099999999956, -0.3790800000000054, -0.3451500000000012, -0.0651300000000008, -0.5670600000000023, -0.7265699999999988, -0.8884200000000027, -0.7569899999999965, -0.8166600000000006, -0.8607299999999984, -0.8837400000000022, 0.09945000000000093, 0.31316999999999773, 0.06084000000000156, -0.18486000000000136, -0.1318199999999985, -0.015600000000001835, -0.46799999999999464, -0.7359300000000051, -0.8271900000000008, -0.8771099999999974, -0.9870900000000029, -0.8053500000000025, -1.2604799999999985, -1.136069999999993, -1.1778000000000048, -1.3790400000000016, -1.854059999999997, -1.5498599999999927, -1.384500000000001, -0.8763300000000038, -1.0857599999999987, -0.512459999999999, -0.5319600000000007, -1.6274700000000006, -1.432859999999998, -0.650520000000002, 0.060059999999998226, 0.2105999999999999, 0.7055099999999985, 0.6809400000000014, 1.428960000000001, 1.3369199999999997, 0.5237700000000016, 0.17978999999999967, -0.32175000000000153, -0.6645599999999954, -0.01247999999999827, -0.052650000000004304, -0.6193200000000019, -0.9371699999999983, -0.7082399999999982, -0.2936699999999952, -0.4765799999999958, -0.19773000000000085, -0.5822700000000021, 0.17199000000000142, 0.588509999999999, 0.8209499999999998, 0.8927099999999975, 1.2401999999999989, -0.0241800000000012, -0.3065400000000036, -1.0526099999999996, -1.4305199999999978, -1.8014099999999997, -1.559999999999996, -0.7121399999999971, 0.3650399999999987, 1.0147799999999996, 1.2226500000000016, 1.5054000000000012, 1.68324, 1.0682099999999966, 0.3701100000000008], [0.0, -0.2979599999999998, 0.584219999999998, 0.6376499999999994, 1.1095499999999996, 0.36815999999999893, -0.3065400000000009, -0.23438999999999754, -0.47775000000000073, -0.8084700000000006, -1.0050300000000003, -0.9516000000000004, -1.9102199999999994, -2.56503, -2.6055900000000003, -2.7335100000000008, -3.05097, -2.4133199999999997, -2.5591799999999996, -2.21871, -2.3758800000000004, -2.0455500000000004, -1.9952400000000001, -1.37046, -0.4087200000000011, -0.29991000000000023, -0.9594000000000008, -1.63293, -1.18638, -1.3806000000000003, -1.953119999999999, -2.5162799999999996, -2.0404800000000005, -1.4196000000000004, -2.2994400000000006, -2.6637000000000004, -2.932020000000001, -2.635620000000001, -2.717130000000001, -1.9921200000000001, -1.0982400000000003, -0.8892000000000005, -0.9648600000000004, -0.3658199999999997, -0.4551299999999989, 0.9621300000000015, -0.3416399999999997, 0.23360999999999965, 0.4422600000000003, -0.10100999999999993, -0.22542000000000006, -0.9582300000000006, -1.503450000000001, -1.3806, -1.294020000000002, -1.3205399999999985, -0.8166600000000009, -1.5514200000000005, -1.7581200000000003, -1.3260000000000005, -1.6477500000000007, -0.48243000000000025, -0.6399899999999998, -0.7140900000000003, -1.2292800000000006, -1.7908799999999996, -2.02527, -1.7277000000000011, -1.5276300000000005, -1.8103800000000003, -1.6274700000000006, -1.9133400000000007, -2.224560000000001, -1.4094599999999993, 0.45123000000000046, 1.0050300000000005, 1.4773200000000033, 1.2881699999999996, 0.7729800000000007, 0.7975499999999984, 0.15521999999999925, 0.03158999999999923], [0.0, 0.09983999999999982, -0.4250999999999999, -0.41066999999999954, 0.23399999999999987, 0.60762, 0.37245000000000017, -0.1060799999999994, -0.22619999999999985, -0.1337699999999996, -0.2219099999999996, -0.17861999999999967, -0.89115, -1.2616499999999995, -0.6633900000000014, -0.8451300000000005, -1.4355900000000008, -1.0522200000000002, -1.1711699999999996, 0.008970000000000478, -0.023010000000000863, 0.2125499999999999, 0.03744000000000014, -0.6396000000000003, -0.7094099999999991, -0.7987200000000004, -0.9087000000000008, -1.470299999999999, -1.9394699999999996, -1.7358899999999986, -2.4277499999999983, -3.1219500000000004, -2.2974900000000007, -1.2940199999999997, -1.8852600000000024, -2.0287800000000002, -0.36035999999999946, -0.3915599999999996, -0.8622899999999999, -0.7683000000000005, -0.44772, -1.2210899999999976, -1.0494899999999996, -0.852929999999999, -0.3989700000000008, -0.3049799999999988, -0.13416000000000017, 0.43056000000000055, 0.15951000000000093, -0.5694000000000005, -0.18954000000000037, -0.6637800000000006, -0.8911499999999993, -1.2351300000000003, -0.2480400000000006, 0.18446999999999913, -0.16692000000000018, -0.3213599999999984, -0.4247099999999998, -1.4445600000000018, -1.818569999999999, -0.9757800000000002, -0.6048900000000009, -0.66339, 0.11739000000000033, -0.4059900000000002, -0.41924999999999935, -0.3393000000000005, -0.4882799999999984, -1.1360699999999988, -1.24566, -1.8014099999999997, -2.269800000000001, -1.4894100000000008, -1.5030599999999996, -0.33813000000000104, 0.25155000000000005, 1.17858, 1.3045500000000008, 0.9742200000000003, 0.31161000000000016, 0.5323500000000001], [0.0, 0.2246400000000004, 0.5459999999999998, 0.8541000000000011, 0.37947, 0.9434099999999995, 1.34901, 0.8014500000000004, 0.6821100000000002, 0.5222100000000001, 0.8037900000000007, 0.49569000000000063, 0.056549999999999434, 0.3116099999999993, 0.5385900000000001, -0.9270300000000002, -0.5619900000000002, -0.6766499999999986, -0.8357699999999983, -0.5694000000000017, -1.243320000000001, -1.0962899999999989, -0.5034899999999984, -0.19149000000000083, -0.4722899999999992, 0.2577899999999995, -0.39195000000000135, -0.6329699999999971, -1.298699999999997, -1.45119, -0.8884200000000018, -0.740609999999998, -1.0370099999999995, -1.065869999999999, -0.46019999999999994, -0.7409999999999988, -0.7281300000000019, -0.30108000000000246, -0.08891999999999856, 0.07409999999999917, 0.3490500000000003, -0.5963100000000008, 0.018719999999999182, -0.19461000000000261, -0.25935000000000263, 0.14975999999999945, 0.5935800000000011, 0.34437000000000095, 0.01131000000000415, 0.13767000000000174, -0.3564599999999998, -1.5108599999999983, -0.8236800000000035, -1.114619999999996, -0.4551300000000027, -0.6832799999999999, 0.13572000000000384, 0.17121000000000342, -0.9036300000000024, -2.0420399999999996, -1.812330000000001, -0.92157, -1.08147, -1.1602499999999996, -0.22931999999999908, -0.42860999999999816, -0.5155800000000004, -0.5752499999999978, -0.8739900000000018, -2.0786999999999956, -1.80999, -1.0615800000000024, -1.1146199999999973, -0.2566200000000043, -0.3435899999999994, 0.3174599999999985, 0.7098000000000002, 1.2948, 1.5502500000000006, 1.4223300000000003, 0.9558900000000006, 0.177450000000001], [0.0, 0.8455199999999974, 0.7394400000000019, 0.8833499999999996, 0.3291600000000021, 1.5268499999999983, 1.9429800000000008, 0.585389999999999, -0.0378299999999987, 0.4746299999999968, 0.2414099999999988, 0.2117700000000018, 0.6622199999999996, 0.3985799999999977, 0.8864699999999992, 0.8911500000000006, 0.5861699999999987, -0.2472600000000038, -0.8478600000000007, -0.2542799999999996, -0.31122000000000094, 0.09710999999999759, 0.20357999999999832, 0.03198000000000212, 0.14196000000000275, 0.48204, 0.49646999999999997, -1.2343499999999992, -0.986699999999999, -1.5174900000000022, -0.9126000000000003, -1.255410000000003, -0.6696300000000006, -0.1544400000000028, -0.15209999999999946, -0.36309000000000013, -0.8743800000000039, -1.268279999999999, -0.1154399999999991, 0.22074000000000105, 0.2554500000000002, -0.3077099999999975, 0.14157000000000064, 0.5752500000000005, 0.92937, 0.9180599999999988, 1.0982400000000023, 0.5647200000000017, 0.4804799999999969, 0.5935799999999984, -0.040169999999998485, -1.1941800000000002, -0.5031000000000008, -0.35022000000000064, -0.5740799999999986, -0.38609999999999856, -0.021839999999997417, -0.20903999999999767, -0.4886699999999973, -1.3486200000000022, -1.5288000000000013, -1.01673, -0.4098900000000003, 0.06356999999999813, 0.6707999999999985, 1.6797299999999993, 1.175070000000002, 0.5105099999999987, 1.0260900000000026, 0.42158999999999835, 0.1107599999999982, 0.38258999999999865, -0.0378300000000058, -0.2839200000000006, -0.4875000000000016, -0.18369000000000169, 1.1754599999999997, 1.2932400000000013, 2.3832899999999997, 2.158649999999998, 2.240160000000001, 1.9757399999999992], [0.0, 0.03938999999999826, -0.04173000000000249, -0.09750000000000503, 0.39467999999999304, 0.26792999999999356, 0.44264999999999866, 1.278419999999989, 0.35762999999999323, 0.20747999999999722, 0.33812999999999516, 0.47462999999999766, 1.177019999999998, 1.0923899999999973, 0.49724999999998953, -1.0896600000000038, -0.8568300000000071, -0.809250000000004, -1.134120000000006, -2.062320000000004, -2.248350000000004, -1.497990000000005, -0.8182200000000068, -0.7359300000000029, -0.7870200000000018, -0.34905000000000497, 0.21020999999999512, -0.29016000000000597, -0.27924000000000504, -0.301080000000006, -0.20826000000000366, -0.9972300000000041, -0.8034000000000074, -0.38805000000000556, 0.49919999999999476, 0.17120999999999675, 0.8353799999999945, 0.034709999999997354, 0.19772999999999197, -0.22113000000000316, -0.30069000000000434, -0.30927000000000593, 0.9375599999999897, 0.6606599999999938, 0.1045199999999964, -0.5608200000000059, -0.40911000000000675, 0.09593999999999214, 0.20981999999999434, -0.32292000000000254, -0.12051000000000434, 0.15989999999999416, -0.32253000000000487, -0.5073900000000067, -0.056160000000005095, 0.4087199999999953, 0.5619899999999936, 0.0655199999999958, -0.6064500000000037, -0.5791500000000056, -0.8716500000000043, -0.7612800000000051, -1.7206800000000073, -1.6356600000000037, 0.034319999999997464, 0.07331999999999494, -0.20241000000000664, -0.9691500000000048, -0.9831900000000067, -1.0561200000000013, -1.2733500000000042, -0.9601800000000038, -0.8018400000000048, -1.1450400000000043, -0.25428000000000495, -0.18915000000000504, 0.40871999999999353, 0.7476299999999947, 0.8630699999999942, 0.7877999999999998, 0.4555199999999946, -0.2285400000000064], [0.0, 1.112670000000001, 0.9878700000000017, 0.9262500000000008, 1.3439400000000026, 1.269839999999995, 1.1356799999999994, 1.3529099999999996, 0.4781400000000017, 0.5011500000000005, 0.35997000000000046, 0.8494200000000013, 1.8599099999999993, 1.6266899999999986, 1.7561699999999991, 1.1735099999999994, 0.6150299999999996, 0.570180000000002, 0.9683700000000001, 0.8384999999999995, 0.5366400000000001, 0.5331299999999998, 0.6602700000000009, 1.494480000000002, 0.3677700000000014, 0.4609800000000005, -0.16145999999999916, -0.2979599999999998, -0.78195, 0.1119300000000002, 0.501150000000001, 0.6329700000000019, -0.1774500000000001, 0.37790999999999964, -0.017159999999999398, 0.2601300000000023, 0.0643500000000019, 1.0093199999999998, 0.7967700000000003, 1.7706000000000008, 1.5369900000000012, 0.9250800000000007, 0.6458400000000003, 0.32916000000000045, 0.5132400000000016, -0.61659, -0.16496999999999862, 0.13961999999999997, -0.40208999999999917, -0.23672999999999944, -0.2640299999999992, 0.1064700000000004, 0.06747000000000092, -0.10997999999999986, 0.9469199999999997, 1.1859900000000008, 1.220310000000001, 1.164930000000001, 0.6676800000000006, 0.2870400000000001, 0.1528800000000009, -0.088919999999999, 1.112280000000001, 0.6029400000000004, 0.7803900000000031, 0.12051000000000045, 1.0608000000000013, 0.6126900000000005, 0.601770000000002, 0.6657300000000005, -0.1310399999999995, -0.7148699999999996, -1.4504099999999984, -0.6481799999999995, -0.3580200000000009, -0.6130799999999996, 0.9609599999999995, 1.0253100000000006, 1.7620199999999997, 2.1009299999999995, 2.1664500000000046, 2.2733100000000017], [0.0, -0.39429, 0.3564599999999998, 1.0089300000000017, 0.6107399999999978, 0.5144100000000005, 0.5744699999999998, 1.0596299999999992, 1.0327200000000003, 0.7569899999999994, 0.351, -0.18252000000000013, 0.33735000000000026, 1.02999, 0.8572200000000023, -0.14118000000000075, 0.2733899999999987, -0.48594000000000026, -0.4555200000000005, -0.11388000000000076, 0.320970000000002, 0.3088800000000005, 0.764790000000001, 0.07761000000000007, 0.1938300000000006, 0.1345499999999984, -0.5662800000000003, -1.01244, -0.7347600000000003, -0.5764200000000004, -0.6310200000000004, -0.08229000000000108, -0.3946800000000004, 0.0241800000000002, -0.07995000000000008, -0.048749999999999516, 0.49023000000000083, 0.6973200000000008, 0.2515500000000006, 0.5850000000000011, 0.32799000000000156, 0.498420000000001, 0.4321200000000003, 0.6025499999999995, -0.27768000000000037, -0.4972500000000006, -0.7281300000000003, -0.7749300000000008, -0.7585500000000002, -1.3396500000000005, -0.8490300000000006, -1.1945699999999997, -0.8314800000000004, -0.11349000000000098, -0.1778400000000009, -0.12090000000000056, 0.02340000000000042, 1.1102230246251565e-16, -1.3068899999999994, -1.3259999999999994, -1.4859000000000002, -1.0674300000000003, -1.51554, -1.2628200000000003, -1.3306800000000005, -0.2616900000000004, 0.6029400000000005, -0.7605000000000004, -0.5678400000000003, 0.24258000000000024, -0.13689000000000007, -0.17199000000000042, -0.32174999999999954, -0.35841000000000045, -0.4839899999999994, 0.4083300000000014, 0.04251000000000016, -0.3525599999999999, 0.7367099999999991, 1.06743, 1.0873200000000007, 1.173900000000001], [0.0, 1.0529999999999997, 1.7620200000000008, 2.218709999999999, 2.761980000000001, 3.160949999999999, 2.485859999999999, 2.2346999999999992, 1.8162300000000016, 1.49214, 1.3267800000000007, 1.32483, 1.6922099999999993, 1.7799599999999995, 1.4238900000000005, 1.0342799999999999, 1.68597, 2.4866400000000004, 2.361840000000002, 2.8399800000000006, 2.29242, 2.2405500000000007, 2.459339999999999, 1.4546999999999999, 1.019070000000001, 1.2511200000000002, 1.0713300000000001, 0.16029000000000038, 0.13376999999999928, 0.09204000000000012, -0.20513999999999877, -0.2577899999999991, -0.2074800000000001, -0.18485999999999947, 0.4859399999999999, 0.7261800000000004, 1.3794300000000008, 1.891499999999997, 1.6535999999999986, 1.4738099999999998, 1.8575700000000002, 1.8731700000000004, 1.3759199999999996, 1.04637, 0.8049599999999999, 0.8681400000000002, 0.7889699999999995, 0.8595599999999998, -0.10023000000000015, 0.1868099999999998, 0.08969999999999989, 0.4722899999999998, 1.2448800000000002, 1.4753699999999998, 1.240590000000001, 1.36461, 1.3950300000000004, 1.14855, 0.26480999999999955, 0.7858499999999996, 1.2573600000000005, 1.3599300000000005, 0.35450999999999994, -0.6161999999999992, -0.03860999999999948, 0.49997999999999987, 1.3899599999999999, 1.7826900000000003, 2.0022599999999993, 1.6949399999999997, 1.9230899999999997, 1.58067, 1.1579099999999998, 1.3560299999999998, 1.6520400000000008, 1.0432499999999993, 0.66222, 0.7956000000000003, 1.3205399999999998, 1.9078799999999991, 2.49873, 3.08724], [0.0, 0.69888, 1.6060199999999996, 1.6660800000000016, 2.29671, 2.7455999999999996, 2.434770000000001, 3.12117, 3.0225000000000013, 1.7362799999999992, 2.911739999999999, 2.6016900000000005, 2.6192400000000005, 2.301000000000001, 1.3724100000000006, 1.1064299999999994, 0.12441000000000085, -0.11895000000000056, 0.08813999999999972, -0.23946000000000145, 0.3724499999999999, 0.8416199999999998, 1.2086099999999997, 1.8357300000000008, 1.5447899999999997, 0.9426300000000001, -0.585780000000001, -0.08424000000000137, -0.290160000000001, 0.19461000000000037, 0.057329999999999826, 0.6220499999999997, 1.79556, 1.1715599999999995, 1.5775499999999998, 1.6543800000000004, 1.6454099999999992, 1.1930100000000001, 1.4866800000000011, 1.8220800000000008, 1.58418, 1.3903500000000006, 0.9476999999999997, 1.2854399999999995, -0.10256999999999983, -0.7472400000000001, -0.28859999999999997, 0.47228999999999954, 0.2644200000000001, 0.54132, 0.22970999999999986, 0.5974800000000003, 0.33773999999999976, 0.39429, 0.5947499999999997, 1.3018200000000002, 1.2440999999999998, 2.27058, 1.6145999999999991, 0.35957999999999973, 0.3619199999999995, 0.4395299999999995, -0.7226700000000006, -0.6084000000000002, 0.32565, 0.49685999999999986, 0.78897, 0.9527699999999995, 1.3696799999999996, 1.53348, 1.30494, 1.0319399999999996, 1.0814700000000004, 1.1111099999999996, 1.0128299999999997, 1.3474500000000005, 1.3213199999999996, 0.86619, 0.8696999999999996, 1.1493299999999997, 1.30182, 2.1824399999999997], [0.0, 1.2967499999999992, 1.3809899999999982, 1.3899599999999985, 1.6418999999999988, 1.4320799999999987, 1.8868199999999984, 2.2081799999999996, 1.3813799999999985, 1.5845699999999998, 1.72497, 1.484729999999999, 1.658669999999999, 1.6333199999999992, 1.4172599999999997, 0.6298499999999988, 0.2858699999999985, 0.8037899999999997, 0.942239999999999, 1.2382499999999987, 1.6532099999999983, 1.4675699999999992, 1.1941799999999994, 1.0912199999999987, 1.2121199999999992, 0.02027999999999963, -0.2203500000000027, -0.45201000000000224, 0.043289999999999385, 0.501929999999999, 0.7714199999999989, 1.0253099999999993, 0.4952999999999993, 0.4211999999999989, 0.1673099999999983, 0.945749999999999, 1.1103299999999996, 1.2674999999999994, 1.6391699999999985, 1.728089999999999, 1.170389999999999, 0.4094999999999991, 1.1836499999999983, 0.7604999999999993, -0.024180000000002533, 0.33929999999999894, 0.6349199999999987, 0.12480000000000024, 0.32252999999999954, 0.522209999999999, 0.054990000000000094, 0.2921099999999993, 0.27533999999999925, 0.900119999999999, 1.0350599999999992, 1.0147799999999993, 1.455869999999999, 0.6501299999999985, 0.4399199999999991, -0.11817000000000166, -0.06513000000000191, 0.6372599999999978, 0.15170999999999646, -1.03935, -0.6185400000000008, 0.03392999999999846, 0.1883699999999986, -0.23985000000000123, 0.5565299999999999, 1.2811499999999991, 0.3818099999999989, 0.7164299999999991, 1.3259999999999992, 0.8739899999999987, 0.54249, 0.3049799999999989, 0.8821799999999986, 1.0502699999999998, 0.7991099999999989, 0.606839999999999, 1.382159999999999, 2.0798699999999988], [0.0, 0.26910000000000167, 0.697710000000002, 1.1173500000000047, 1.2628200000000018, 1.7058600000000026, 2.4671400000000014, 1.6770000000000014, 2.463240000000001, 2.2912500000000025, 2.782260000000001, 2.604810000000002, 2.3520900000000013, 1.510860000000002, 1.7062500000000014, 1.2994800000000017, 1.0307700000000026, 0.32292000000000254, 0.3985800000000015, -0.16886999999999874, 0.5003700000000026, 1.5264600000000033, 1.6516500000000018, 1.5939300000000014, 1.916070000000002, 1.1980800000000025, 0.03432000000000057, 0.12324000000000224, -0.11933999999999623, -0.06395999999999713, 0.9785100000000007, 0.7382700000000026, 0.8661900000000016, 1.530750000000002, 1.8057000000000025, 1.3716300000000021, 1.0541700000000032, 0.6906900000000018, 0.9348300000000025, 1.2191400000000034, 0.8115900000000025, 0.9757800000000001, 1.2951900000000018, 0.9441900000000023, 1.3911300000000015, -0.06161999999999823, -0.1661399999999973, -0.10568999999999917, 0.7569900000000007, 0.9707100000000013, 0.5159700000000014, -0.33110999999999846, 0.08775000000000244, 1.025310000000001, 1.1294400000000018, 1.3232700000000013, 1.6126500000000021, 1.4547000000000034, 1.2265500000000016, 0.6033300000000024, 0.5038800000000019, 0.653640000000002, 0.05655000000000188, -0.662219999999996, -0.8989499999999948, -0.18212999999999457, 1.081860000000002, 1.593540000000003, 1.0229700000000026, 1.2113400000000005, 1.1477700000000024, 1.0498800000000013, 0.9484800000000007, 1.225380000000001, 0.9071400000000038, 0.8654100000000022, 0.7250100000000008, 0.3837600000000019, 1.6438500000000036, 1.6649100000000017, 1.256580000000002, 1.9683300000000017], [0.0, -0.04719000000000073, 0.3233099999999991, 0.9016799999999996, 0.7807799999999993, 1.1855999999999995, 1.22499, 1.3068899999999992, 1.4780999999999997, 1.336919999999999, 0.6824999999999982, 0.9278100000000002, 0.8856899999999993, 1.4597700000000002, 0.8572199999999996, 0.83265, -0.06006000000000067, -0.1123200000000002, 0.7253999999999986, 1.5295799999999995, 1.5432300000000003, 1.8700500000000002, 1.7787899999999996, 0.9492599999999994, 1.07133, 1.14309, 0.054209999999998315, -0.09750000000000236, -0.7956000000000023, -1.0335000000000012, -0.7519200000000008, -0.0935999999999999, 1.14231, 0.35411999999999977, 0.3186300000000004, -0.01404000000000094, 0.1458599999999992, 0.8006699999999999, 1.31586, 2.0529599999999997, 2.583359999999999, 1.5100799999999999, 1.3692899999999995, 0.6349199999999999, 0.501540000000001, -0.15444000000000146, 0.3829800000000003, -0.09906000000000059, 0.2347799999999991, 0.2074799999999999, 0.21918000000000037, -0.23634000000000044, -0.587729999999999, 0.3767399999999983, 1.1380200000000007, 1.2047099999999988, 0.9281999999999995, 0.5378099999999988, 1.1602499999999993, 0.2999099999999988, 0.33110999999999935, 1.3860599999999996, 0.7741499999999996, 0.8135399999999997, 0.36699000000000015, 0.4153499999999999, 0.6649499999999997, 0.29562000000000044, 0.8502, 1.2167999999999999, 0.9145499999999991, 1.4769299999999987, 1.9698899999999997, 1.6933799999999992, 1.9281599999999997, 1.1181299999999976, 0.3708899999999993, 0.30458999999999925, 0.08306999999999709, 1.0112700000000001, 0.9558899999999998, 2.44842], [0.0, -0.2663699999999998, -0.6520800000000011, 0.8100299999999998, 1.3185900000000006, 0.9083100000000003, 2.1165300000000005, 1.77333, 1.8798000000000001, 1.92855, 1.6068000000000005, 1.5978300000000003, 2.0209800000000007, 1.4948700000000004, 0.8751599999999998, 0.9555000000000003, 0.7632299999999992, 0.6080099999999997, 0.5144100000000007, 0.12441000000000058, 1.26633, 1.54869, 1.4480700000000004, 1.4937000000000002, 1.2327900000000003, 1.6165500000000004, 0.6364800000000008, -0.2488200000000007, -0.4430400000000052, 0.01598999999999906, -0.04719000000000051, 0.06551999999999936, 0.23321999999999932, 0.7807800000000009, 1.3673400000000002, 1.761240000000001, 1.0884900000000004, 1.0674299999999999, 0.9211800000000002, 0.8482500000000006, 1.1138400000000002, 1.6797300000000006, 1.5962700000000003, 1.11384, 1.1793600000000009, 1.5366000000000006, 1.1684399999999995, 0.6809399999999988, 0.7819500000000004, 0.9890400000000003, 0.2281499999999983, -0.06668999999999747, -0.18564000000000225, 0.8002800000000003, 0.6875699999999998, 0.6899100000000002, 0.9625200000000004, 1.2378599999999997, 0.9332700000000003, 0.34671000000000185, -0.016770000000001506, 0.24803999999999937, 1.6181100000000004, 0.9519900000000004, 0.6555899999999999, 1.9383000000000001, 1.9917300000000002, 2.31894, 1.8248100000000005, 1.8883800000000002, 0.9878700000000008, 0.4247099999999995, 0.5475599999999996, 0.30927000000000104, 0.3595800000000007, 0.49139999999999917, 0.689520000000001, -0.0756600000000005, 0.7464599999999995, 0.6197100000000015, 1.4274000000000004, 2.0244900000000006], [0.0, -0.3915600000000019, 0.5526299999999988, 0.965249999999999, 1.3022099999999988, 0.9180599999999981, 2.0233199999999987, 2.0786999999999987, 1.3587599999999984, 1.6758299999999986, 1.5514199999999985, 1.0366199999999979, 1.7600699999999985, 1.2339599999999986, 0.7476299999999989, 1.4617199999999984, 0.6711900000000004, 0.4126199999999991, 1.7335499999999984, 1.2909000000000002, 2.1278399999999995, 2.1820499999999985, 1.9811999999999987, 0.963689999999999, 1.0401299999999987, 0.2456999999999998, 1.175459999999999, 0.26987999999999746, -0.2819700000000034, -0.39429000000000247, 0.20864999999999823, 0.6255600000000006, 0.3708899999999995, 0.50115, 0.07214999999999994, 0.8482499999999982, 1.025309999999998, 0.8669699999999987, 0.8357699999999972, 1.5089099999999984, 1.8875999999999984, 2.1251099999999985, 1.510079999999999, 2.0981999999999985, 1.9332299999999987, 1.6793399999999987, 0.6161999999999981, 1.052999999999999, 1.280759999999999, 0.7784399999999982, 0.32096999999999887, 0.2788499999999985, -0.33189000000000224, 0.7593299999999978, 0.6481799999999978, 0.7698599999999987, 0.08892000000000033, 0.24920999999999816, 0.9582299999999968, 0.4379699999999984, -0.18447000000000102, 0.6395999999999993, 1.0444199999999992, 1.552979999999999, 1.6344899999999989, 1.6262999999999985, 1.7257499999999988, 0.5253299999999983, 1.422719999999999, 0.4391399999999974, 0.2612999999999974, 0.0495299999999963, 1.49409, 1.0884900000000006, 0.9691499999999984, 0.5171399999999973, 0.5530199999999981, 0.5459999999999985, 0.6111299999999977, 0.2488199999999996, 0.45434999999999803, 1.5759899999999991], ...]

... and 2886 more row(s).

session_id: 766640955
institution: Allen Institute for Brain Science
stimulus_notes: functional_connectivity